*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Texturina", sans-serif;
    list-style: none;
}

body{
background-color: #D1ECEE;
}

li a {
  position: relative;
  color: #000;
  text-decoration: none;
}

li a:hover {
  color: #000;
}

li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #536066;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

li a:hover::before {
  transform: scaleX(1);
}

nav{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 5px 5px #aedbdd;
  padding: 0.5rem;
  border-bottom: 2px solid black;
  background-color: #D1ECEE;
}

nav ul{
    display: flex;
    justify-content: space-around;
    font-size: large;
    align-items: center;
}
nav ul :hover{
    color: #a68fac;
    cursor: pointer;
}

.intro{
    font-size: 5rem;
    display: flex;
    flex-direction: column;
    justify-self: center;
    text-align: center;
    padding: 2rem;
    padding-top: 5rem;
    margin-top: 10rem;
    border: 5px solid black;
    box-shadow: 15px 15px 5px #aedbdd;
    border-radius: 25px;
    background-color: #5A0D30;
    color:#D1ECEE
}

.name{
    font-size: 8rem;
    padding: 1rem;
    margin-top: 5rem;
    border: 3px solid black;
    border-radius: 25px;
    background-color: #D1ECEE;
    color: black;
}


.about{
    display: flex;
    flex-direction: row;
    justify-self: center;
    margin: 3rem;
    padding: 1rem;
    margin-top: 8rem;
    background-color: #5A0D30;
    border: 3px solid black;
    border-radius: 25px;
    box-shadow: 15px 15px 5px #aedbdd;
    
}

.about p {
font-size: 1.25rem;
padding: 1rem;
margin-top: 3rem;
background-color: #a68fac;
margin-right: 1rem;
border: 3px solid black;
border-radius: 25px;
}

h1{
    color: #D1ECEE;
}

.left{
display: flex;
flex-direction: column;
max-width: 50%;
}

img{
    max-width: 100%;
    border-radius: 25px;
    border: 3px solid black;
}

.reel{
    display: flex;
    flex-direction: column;
    justify-self: center;
    margin-left: 10rem;
    margin-right: 10rem;
    padding: 5rem;
    background-color: #5A0D30;
    border: 3px solid black;
    border-radius: 25px;
    box-shadow: 15px 15px 5px #aedbdd;
}

.reel a{

  align-self: center;
    position: relative;
  color: #D1ECEE;
  text-decoration: none;
  font-size: larger;
}

.reel a:hover {
    color: white;
    cursor: pointer;
}


.reel a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #aedbdd;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.reel a:hover::before {
  transform: scaleX(1);
}

video{
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    border: 3px solid black;
    margin: 10px;
}

.contact{
  margin-top: 10rem;
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
}

.message{
  margin-top: 1rem;
  margin-left: 1rem;
}

@media screen and (max-width: 1000px) {
  .intro{
    margin-left: 5rem;
    margin-right: 5rem;
    font-size: 2rem;
    padding-top: 3rem;
  }

  .name{
    font-size: 4rem;
    margin-top: 3rem;
  }

  .about{
    flex-direction: column;
    align-items: center;
  }
  .left{
    max-width: 90%;
  }
  img{
    max-width: 90%; 
  }

  .about p{
    margin-bottom: 1rem;
  }

  .right{
    display: flex;
    justify-content: center;
  }


  .reel{
    margin-left: 5rem;
    margin-right: 5rem;
  }
}

@media screen and (max-width: 700px) {
  .intro{
    font-size: 1.5rem;
    padding-top: 2rem;
  }

  .name{
    font-size: 2.5rem;
    margin-top: 2rem;
  }

  .about p{
    font-size: 1rem;
  }
  
  .reel{
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem;
  }
  .reel a{
    font-size: 1rem;
  }
}