body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: black;
  font-family: 'Inter', sans-serif;
}

/*Background*/
.background-img{
  margin: 0;
  padding: 0;
  position: relative;
  background-color: black;
}

.background-img img{
  width: 100%;
  height: 350px;
  display: block;
  object-fit: cover;
} 

.background-img::before{
  content:"";
  background: linear-gradient(to bottom, black, transparent);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  z-index: 1;
} 

.background-img::after{
  content:"";
  background: linear-gradient(to top, black, transparent);
  position:absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px; 
  pointer-events: none;
  z-index: 1;
}
.content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.4vw;
  margin-bottom:200px;
  padding-top: 5%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.content.visible{
  opacity: 1;
  transform: translateY(0);
}
.content-header{
  width: 45%;
  text-align: center; 
  margin: 0;
  font-family: Orbitron;
} 

.content-paragraph{
  width: 45%;
  text-align: center;
  color: #ffba69;
    font-weight: bold;
    font-family: Inter;
}
/* Line Image */

/* Boxes container - FIXED */
.box {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.box.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Individual box - FIXED */
.box > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: auto;
  width: 300px;
  border-radius: 10px;
  border: 5px solid #ffa947;
  color: white;
  transition: 400ms;
  font-family: Orbitron;
  padding: 20px;
}
.feedback .tip{
  height: 50px;
}
.box > div:hover {
  transform: scale(1.05);
}

.box:hover > div:not(:hover) {
  transform: scale(0.9);
}
button{
  font-family: Orbitron;
  border: 5px solid #ffffff;
  background-color: #ffa947;
  border-radius: 8px;
  height: 100px;
  width: 250px;
  font-size: 30px;
  font-weight: bolder;
  color: white;
  transition: 400ms;
  cursor: pointer;
}

button:hover{
  transform: scale(1.05);
  background-color: #ffffff;
  border: 5px solid #ffa947;
  color: #ffa947;

}
button:active{
  transform: scale(1);
}

/* Tip text */
.tip {
  color: #ffa947 !important;
  font-size: 40px;
  font-weight: 900;
  text-align: center;
}

/* Second text */
.second-text {
  font-size: 20px;
  line-height: 1.5;
  padding: 20px;
  height: 200px;
}

/* Media icons */
.icons {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 80px;
  gap: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.icons.visible {
  opacity: 1;
  transform: translateY(0);
}
.media-icons {
  filter: invert(58%) sepia(85%) saturate(2400%) hue-rotate(352deg) brightness(101%) contrast(105%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  margin: 0 15px;
  transition: 400ms;
  display: inline-block;
}

.media-icons:hover {
  transform: scale(1.1);
}

.media-icons:active {
  filter: brightness(0) invert(1);
  transform: scale(1);
}
/* Media Transition*/
.media-transition {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.media-transition.visible {
  opacity: 1;
  transform: translateY(0);
}
.media-transition h3{
  color: white;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 35px;
}
/* Email Transition */
.email {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  margin-bottom: 70px;
}
.email.visible {
  opacity: 1;
  transform: translateY(0);
}
.email h4 {
  height: 5px;
  color: #ffa947;
  text-align: center;
  font-size: 30px;
}

.email p {
  height: 10px;
  font-size: 23px;
  color: white;
  text-align: center;
  margin-bottom: 200px;
}



/* Active nav link */
.active {
  text-decoration: underline;
  color: orange;
}
/* Mobile */
@media (min-width: 320px) and (max-width: 700px) {
  .background-img img {
    height: 300px;
  }

  .background-img::before {
    height: 80px;
  }

  .background-img::after {
    height: 120px;
  }
.content{
  flex-direction: column;
  font-size: 18px;
  margin-bottom:60px;
}
.content-header{
  width: 80%;
} 
.content-paragraph{
  width: 80%; 
}
.box {
  flex-direction: column;
  gap: 30px;
}

/* Individual box - FIXED */
.box > div {
  flex-direction: column;
  height: auto;
  width: 230px;
}
.feedback .tip{
  height: 30px;
}
button{
  height: 70px;
  width: 220px;
  font-size: 28px;
}
/*Tip*/
.tip {
  font-size: 31px;
}

/* Second text */
.second-text {
  font-size: 18px;
  line-height: 1.5;
  height: 280px;
}

/* Media icons */
.icons {
  margin-bottom: 50px;
  gap: 13px;
}
.media-icons {
  width: 40px;
  height: 40px;
}
/* Media Transition*/
.media-transition h3{
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 30px;
}
/* Email Transition */
.email {
  margin-bottom: 50px;
}
.email h4 {
  height: 5px;
  font-size: 26px;
}

.email p {
  height: 10px;
  font-size: 20px;
}
}

/* Laptop and Tablet */
@media (min-width: 701px) and (max-width: 1023px) {
.content{
  flex-direction: column;
  font-size: 30px;
  margin-bottom:100px;
}
.content-header{
  width: 65%;
} 
.content-paragraph{
  width: 65%;
}
.box {
  flex-direction: row;
  gap: 20px;
  margin: 50px 0;
}

/* Individual box - FIXED */
.box > div {
  flex-direction: column;
  width: 200px;
}
.feedback .tip{
  height: 10px;
}
button{
  height: 60px;
  width: 180px;
  font-size: 25px;
}
/*Tip*/
.tip {
  font-size: 28px;
}

/* Second text */
.second-text {
  font-size: 16px;
  height: 300px;
}

/* Media icons */
.icons {
  margin-bottom: 100px;
  gap: 60px;
}
.media-icons {
  width: 50px;
  height: 50px;
}
/* Media Transition*/
.media-transition h3{
  margin-top: 80px;
  margin-bottom: 80px;
  font-size: 30px;
}
/* Email Transition */
.email {
  margin-bottom: 70px;
}
.email h4 {
  height: 5px;
  font-size: 30px;
}

.email p {
  height: 10px;
  font-size: 25px;
}
}

/* Laptop */
@media (min-width: 1024px) and (max-width: 1919px) {
.content{
  flex-direction: column;
  font-size: 30px;
  margin-bottom:100px;
}
.content-header{
  width: 60%;
} 
.content-paragraph{
  width: 60%;
}
.box {
  flex-direction: row;
  gap: 20px;
  margin: 50px 0;
}

/* Individual box - FIXED */
.box > div {
  flex-direction: column;
  width: 280px;
}
.feedback .tip{
  height: 48px;
}
button{
  height: 80px;
  width: 250px;
  font-size: 30px;
}
/*Tip*/
.tip {
  font-size: 37px;
}

/* Second text */
.second-text {
  font-size: 20px;
  height: 240px;
}

/* Media icons */
.icons {
  margin-bottom: 100px;
  gap: 60px;
}
.media-icons {
  width: 60px;
  height: 60px;
}
/* Media Transition*/
.media-transition h3{
  margin-top: 80px;
  margin-bottom: 80px;
  font-size: 30px;
}
/* Email Transition */
.email {
  margin-bottom: 70px;
}
.email h4 {
  height: 5px;
  font-size: 30px;
}

.email p {
  height: 10px;
  font-size: 25px;
}
}

/* Desktop */
@media (min-width: 1920px){
.content{
  flex-direction: column;
  font-size: 55px;
  margin-bottom:200px;
}
.content-header{
  width: 45%;
} 
.content-paragraph{
  width: 45%;
}
.box {
  flex-direction: row;
  gap: 100px;
}

/* Individual box - FIXED */
.box > div {
  flex-direction: column;
  height: auto;
  width: 600px;
  border: 10px solid #ffa947;
}
.feedback .tip{
  height: 100px;
}
button{
  height: 150px;
  width: 450px;
  font-size: 60px;
  border: 10px solid;
}
/*Tip*/
.tip {
  font-size: 73px;
}

/* Second text */
.second-text {
  font-size: 40px;
  height: 550px;
}

/* Media icons */
.icons {
  margin-bottom: 200px;
  gap: 80px;
}
.media-icons {
  width: 120px;
  height: 120px;
}
/* Media Transition*/
.media-transition h3{
  margin-top: 200px;
  margin-bottom: 200px;
  font-size: 60px;
}
/* Email Transition */
.email {
  margin-bottom: 160px;
}
.email h4 {
  height: 5px;
  font-size: 60px;
}

.email p {
  height: 25px;
  font-size: 55px;
  margin-bottom: 380px;
}
}
/* Desktop 2k*/
@media (min-width: 2560px) {
.content{
  flex-direction: column;
  font-size: 55px;
  margin-bottom:200px;
}
.content-header{
  width: 45%;
} 
.content-paragraph{
  width: 45%;
}
.box {
  flex-direction: row;
  gap: 100px;
}

/* Individual box - FIXED */
.box > div {
  flex-direction: column;
  height: auto;
  width: 600px;
  border: 10px solid #ffa947;
}
.feedback .tip{
  height: 100px;
}
button{
  height: 150px;
  width: 450px;
  font-size: 60px;
  border: 10px solid;
}
/*Tip*/
.tip {
  font-size: 73px;
}

/* Second text */
.second-text {
  font-size: 40px;
  height: 550px;
}

/* Media icons */
.icons {
  margin-bottom: 200px;
  gap: 80px;
}
.media-icons {
  width: 120px;
  height: 120px;
}
/* Media Transition*/
.media-transition h3{
  margin-top: 200px;
  margin-bottom: 200px;
  font-size: 60px;
}
/* Email Transition */
.email {
  margin-bottom: 160px;
}
.email h4 {
  height: 5px;
  font-size: 60px;
}

.email p {
  height: 25px;
  font-size: 55px;
  margin-bottom: 380px;
}
}
