* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;

}
a {
  text-decoration: none;
}
.header {
  height: 6em;
  background-image: linear-gradient(0deg, #d9afd9 0%, #97d9e1 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  width: 100%;
}


.header__right a{
    padding-right: 5px;
    font-family: sans-serif;
    font-weight: 700;
    color: #920101;
}
.header__right a:hover{
    text-decoration: underline;
}

.nav{
    background-image: linear-gradient(45deg, #fbda61 0%, #ff5acd 100%);
    position: sticky;
    top: 0;
    padding: 2rem;
    z-index: 1;
}
.nav ul{
    text-align: center;

}
.nav ul li{
    display: inline-block;
    padding-right: 10px;
}
.nav ul li a{
    color: #000;
    font-weight: 900;
}
.nav ul li a:hover{
    color: #fff;
}
.banner{
    position: relative;
}
.banner img{
    width: 100%;
   max-height:calc(100vh - 185px); 
   object-fit:fill ;
   
}
.banner__text{
    width: 250px;
    height: 100px;
    position: absolute;
    top: 250px;
    left:50px;
    display: grid;
    gap: 10px;
    
}
.banner__text h2{
    font-size: 3rem;
    color: white;
    text-shadow: 0px 2px 4px black;
    padding-bottom: 10px;
    
}
.banner__text p{
    font-size: 1rem;
    font-weight: 500;
    color: red;
    text-shadow: 0px 2px 4px grey;
    
}
.banner__text button{
    border-radius: 10px;
    background-color: #d9afd9;
    border: none;
    width: 120px;
    height:35px;
    cursor: pointer;
    color: #000;
    font-size: 0.9rem;
    font-weight: 700;
}
.banner__text button:hover{
    opacity: 0.5;
}

.sticked{
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #AF96A2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.sticked:hover{
    background-color: #ff0022;

}
.sticked:hover .fa-regular{
    color: #fff;
    font-size: 32px;

}
.fa-regular{
    font-size: 30px;
    color: #920101;
    
}
.content{
    padding: 2rem;
    text-align: justify;
    line-height: 1.5;
}