body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #8ccfe9;
    min-height: 50vh;

}

header {
    background-color: #050505;
    color: #deea87;
    padding: 10px 20px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
  height: 70px;
  width: auto;
  vertical-align: middle;
  cursor: pointer;
}
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}
.menu :hover {
    color: #cceffc;
}
.menu li a {
    color: #deea87;
    text-decoration: none;
}
h1 {
    text-align: center;
}
.logo {
  height: 70px;
  width: auto;
  vertical-align: middle;
}
   
main {
    flex: 1;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.hero {
     background-color: #267594;
    border-bottom-right-radius: 70px;
border-bottom-left-radius: 70px;
border-top-right-radius: 70px;
border-top-left-radius: 70px;
margin-top: 60px;
margin-bottom: 65px;
margin-right: 50PX;
margin-left: 50px;

}
.hero h1 {
    color: #cceffc;
    }
#reel {
    text-align: center;
}

h2{
    margin-left: 200px;
    margin-right: 200px;
}

p{
    margin-left: 200px;
    margin-right: 200px;
}
.carrusel {
    display: flex;
    width: 400px;
    height: 250px;
    justify-content: center;
    align-items: center;
   
  padding-left: 550px; 
}
.carrusel img {
    width: 0px;
    flex-grow: 1;
    object-fit: cover;
    opacity: 8;
    
}

.carrusel img:hover {
    cursor: crosshair;
    width: 80px;
    opacity: 1;
    filter: contrast(120%);
}
footer {
    background-color: #0e0e0f;
    color: #deea87;
    text-align: center;
    padding: 10px;
   }
footer a{
    color: #deea87;
}