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

}

header {
    background-color: #050505;
    color: #deea87;
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    height: 90px;            
    width: auto;
    vertical-align: middle;
    cursor: pointer;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}
.menu :hover {
    color: #c2ebfb;
}

.menu li a {
    color: #e2ed8c;
    text-decoration: none;
   
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;  
    align-items: center;      
    min-height: 70vh;         
}

.hero img {
    display: block;
    max-width: 90%;
    height: auto;
    margin: 0 auto;           
}

.hero h1 {
    text-align: center;
    margin-top: 20px;
}


.botones {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px;
}

.btn {
    background-color: #2665b5;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid white;
}

footer {
    background-color: #0e0e0f;
    color: #deea87;
    text-align: center;
    padding: 10px;
   }
footer a{
    color: #deea87;
}




body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}





h2{
    margin-left: 20px;
}

p{
    margin-left: 20px;
}
