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

body {
  
  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;
}

.header {
  width: 100vw;
}

#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;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px;

}

.row {
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
  background-color: lightgray;
  
  display: block;
  justify-content: center;

}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
.footer {
  background-color: transparent;
  padding: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 80vw;
  font-size: small;
  font-family: "Saira Condensed", sans-serif;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column {
    width: 100%;
  }
}

.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 15px;
  }


}

img {

 /*border-width: thin;*/
 border-radius: 8px;
 /*border-color: #000;
 border-style: solid;*/
 border: none;
 
}

.button:hover {
  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 15px;
  }

}

.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%;
    margin-left: auto;
    margin-right: auto;
  }


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

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

}