* {
    font-family: "Montserrat Alternates", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
    margin: 0;
    background-image: url('fondo.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    width: 500px;
    background-color: #fae0b7;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 60px;
    padding: 20px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.container_botones {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
}
.botones {
    background-color: #fae0b7;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    
}

.botones:hover {
    background-color: #dfc7a3;
}

.botones a {
    color: black;
    text-decoration: none;
}

.container_pato {
    background-color: #edd75a;
    width: 500px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 60px;
    padding: 20px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.botones_pato {
    background-color: #edd75a;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    
}

.botones_pato:hover {
    background-color: rgb(182, 163, 135);
}


.botones_pato a {
    color: black;
    text-decoration: none;
}

.container_index {
    display: flex;
    justify-content: center;
    align-items: center; 
    width: 500px;
    background-color: #fae0b7;
    text-align: center;
    border-radius: 60px;
    padding: 20px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.container_index .persona img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover; 
}

.container_index .persona h3 {
    color: white;
}

.container_index .container_botones {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    padding-bottom: 15px;
}

.footer {
    background-color: #333;
    color: #f0f0f0;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer-content a {
    color: #ffa500; 
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
    color: #FFCC99;
}

::-webkit-scrollbar {
    width: 18px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #ff3f81;
    border-radius: 12px;
    border: 3px solid #121212;
}

@media screen and (max-width: 768px) {
    .container, .container_pato, .container_index {
        width: 100%;
        border-radius: 30px;
        padding: 15px;
    }

    .container_botones {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .botones, .botones_pato {
        padding: 10px;
        width: 100%;
        margin-bottom: 10px;
    }

    .container_index .persona img {
        width: 100px;
        height: 100px;
    }

    .container_index {
        flex-direction: column;
        display: flex;
    }

    .container_index .container_botones {
        gap: 10px;
        padding-bottom: 10px;
    }

    .footer {
        font-size: 12px;
        padding: 15px;
    }
}
