@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@1,300&family=Quicksand:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: black;
  margin-top: 80px;
}

h1,
.h1 {
  font-size: 2.375rem;
  line-height: 1.1;
  font-family: Quicksand, sans-serif;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}

h3,
.h3 {
  text-transform: uppercase;
  font-size: 1.71rem;
  line-height: 1.3;
  font-family: Quicksand, sans-serif;
  font-style: normal;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 0.5em;
}

h5,
.h5 {
  line-height: 1.6;
  font-style: normal;
  margin: 0 0 0.5em;
  display: block;
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #1a1a1a;
  margin: 1em 0;
  padding: 0;
  clear: both;
  border-width: 1px 0 0;
  margin: 1.25rem 0;
  height: 0;
  unicode-bidi: isolate;
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
  margin-inline-start: auto;
  margin-inline-end: auto;
  overflow: hidden;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

video {
   object-fit: cover;
}

.button-primary {
  width: fit-content;
  text-decoration: none;
  text-align: center;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #fff0;
  color: #040f0f;
  border: 1px solid #040f0f;
  box-shadow: none;
  padding: 14px 28px;
  margin-top: 30px;
}

.button-primary:hover {
  color: white;
  background-color: black;
}

.header {
  display: flex;
  justify-content: center;
  background-color: black;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
}

.header h1 {
  color: white;
  text-align: center;
  margin-top: 20px;
}

.section {
  display: flex;
  justify-content: center;
  background-color: white;
}

.section-body {
  display: flex;
  flex-direction: column;
  width: 35%;
  justify-content: center;
  align-items: center;
  margin: 40px 0px 40px 0px;
}

.section-Barber {
  display: flex;
  height: 350px;
  background-color: white;
}

.container {
  display: flex;
  height: 450px;
  flex-direction: row;
  width: 100%;
}
 
.white-box-column {
  width: 50%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0px 20px 0px;
}

.white-box-column p {
  padding: 50px;
}
 
.parallax-column {
  width: 50%;
  background-color: white;
}

.parallax-image-right {
  height: 100%;
  width: 100%;
  background-size: 50% 100%;
  background-attachment: fixed; 
  background-repeat: no-repeat;
  background-position: right;
}
 
.parallax-image-left {
  height: 100%;
  width: 100%;
  background-size: 50% 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: left;
}


footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #000;
  color: white;
  padding: 20px;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 50px;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #000;
  color: white;
  width: 100%;
  column-gap: 20px;
  margin-top: 50px;
  align-items: flex-start;
}

.footer-content-column {
  width: 30%;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .section-body {
    width: 90%;
  }
  .white-box-column {
    width: 100%;
  }
  .parallax-column {
    width: 0%;
  }
  .header h1 {
    font-size: 30px;
  }
  .white-box-column .avatar {
    display: block;
    width: 200px; 
    height: 200px; 
    border-radius: 100px; 
    margin: 20px 20px 20px 20px;
  }
  .footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 50px;
  }
  .footer-content {
    flex-direction: column;
    margin: 10px 10px 10px 10px;
  }
  .footer-content-column {
    width: 90%;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .section-body {
    width: 90%;
  }
  .white-box-column {
    width: 100%;
  }
  .parallax-column {
    width: 0%;
  }
  .header h1 {
    font-size: 30px;
  }
  .white-box-column .avatar {
    display: block;
    width: 200px; 
    height: 200px; 
    border-radius: 100px; 
    margin: 20px 20px 20px 20px;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .section-body {
    width: 90%;
  }
  .white-box-column {
    width: 100%;
  }
  .parallax-column {
    width: 0%;
  }
  .header h1 {
    font-size: 2.375rem;
  }
  .white-box-column .avatar {
    display: block;
    width: 200px; 
    height: 200px; 
    border-radius: 100px; 
    margin: 20px 20px 20px 20px;
  }
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .section-body {
    width: 35%;
  }
  .white-box-column {
    width: 50%;
  }
  .parallax-column {
    width: 50%;
  }
  .header h1 {
    font-size: 2.375rem;
  }
  .white-box-column .avatar {
    display: none;
  }
} 
