body{
    background-image: url("fondo.png");
    background-repeat: repeat;
    animation: pan 180s linear infinite;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

@keyframes pan{
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1920px 0;
    }
}

.content {
    width: 1000px;
    display: flex;
    justify-content: center;
    margin: auto;
    flex-direction: column;
    gap: 50px;
}
.menu ul{
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: flex-start;
}
.menu li{
    background-color: white;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;;
    border-style: solid;
    border-color:black;
    border-width: 10px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-top: none;
    transition: all 0.3s ease;
    
}
.menu a{
    display: flex;
    align-items: center;
    padding: 10px;
    padding-top: 25px;
    transition: all 0.3s ease;
    justify-content: center;
    width: 100%;
}
.menu li:hover a{
    padding-top: 10px;
    align-items: center;
}
.welcome{
    background-color: white;
    width: 1000px;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;;
    border-style: solid;
    border-color:black;
    border-width: 10px;
    border-radius: 25px;
    font-size: 32px;
    box-sizing: border-box;
}
.featured, .guestbook, .sponsors{
    background-color: white;
    width: 1000px;
    max-width: 1000px;
    display: flex;
    border-style: solid;
    border-color:black;
    border-width: 10px;
    border-radius: 25px;
    box-sizing: border-box;
    padding: 25px;
    padding-top: 10px;
    flex-direction: column;
}
h2{
    font-size: 32px;
}
p{
    font-size: 18px;
}

