/* Общие стили */

body {
  background-color: RGB(24, 24, 24);
  color: #fff;
  /* font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; */
  /* font-family: 'Varela Round', sans-serif;*/
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}
video { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
div#fashion {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: Moderne Sans, sans-serif;
  text-align: center;
  font-size: 2rem;
  width: 100%;
  letter-spacing: .5rem;
  margin-bottom: 20px;
}

h1, h2, h3, h4, p {
  color: #dfe7e5;
  margin-bottom: 15px;
}

h1, h2, h3 {
  text-align: center;
}

a {
    text-decoration: none;
}

nav a {
  text-decoration: none;
  color: inherit;
  padding: 1rem;
}


button, .btn, input[type="submit"] {
  border: none;
  border-radius: 4px;
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
  margin-bottom: -5px;
}