* {
    box-sizing: border-box;
}


*,
*:before,
*:after {
    box-sizing: border-box;
}

p {
    text-align: justify;
    font-size: 1.2em;
}

body {
    /*font-family: Arial, Helvetica, sans-serif;*/
    font-family: "Saira Condensed", sans-serif;
    font-size: 18px;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    background-color: lightgray;
    margin-top: 20px;
    display: block;
    justify-content: center;

     overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  overflow-x: hidden;
  /* Hide horizontal scrollbar */

}

.header {
    width: 80vw;
}

#title {
    font-size: 3em;
    font-family: "Pacifico", cursive;
    font-weight: 600;
    color: rgb(120, 1, 1);

    @media (max-width: 768px) {
        display: block;
        justify-content: center;
        /* Центрирует кнопки по горизонтали */
        width: 100%;
        font-size: 2.5em;
    }

}

#sub-title {
    font-family: "Saira Condensed", sans-serif;
    font-size: 16px;
    line-height: 1;
    color: #000;
    margin-left: 10px;
}

h2 {
    /*font-family: "Pacifico", cursive;*/
    font-family: "Saira Condensed", sans-serif;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 80vw;
}

.content {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 80vw;
    display: block;
    justify-content: center;
}

.footer {
    background-color: transparent;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100vw;
    font-size: small;
    font-family: "Saira Condensed", sans-serif;
}

.button {
    background-color: black;
    border: none;
    color: lightgray;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    margin: 16px;
    text-transform: uppercase;
    font-family: "Saira Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;

    @media (max-width: 768px) {
        font-size: 14px;
        padding: 10px 16px;
    }
}

.button:hover {
    /*#780101*/
    background-color: rgb(120, 1, 1);
    color: lightgray;
}

.button_muted {

    background-color: darkgrey;
    border: none;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    margin: 16px;
    text-transform: uppercase;
    font-family: "Saira Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;

    @media (max-width: 768px) {
        font-size: 14px;
        padding: 10px 16px;
    }
}

.button_muted:hover {
    background-color: rgb(120, 1, 1);
    color: lightgray;
}

.navigation_under_video {

    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;


    @media (max-width: 768px) {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

a:link,
a:visited {
    color: rgb(120, 1, 1);
    text-decoration: none;
}

hr {
    border-top: 1px solid #0a0a0a;
    width: 90%;
}