html, body {
    height: 100%;
    margin: 10px;
    padding: 0px;
    font-family: sans-serif;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.container {
    background: orangered;
    margin-top: 4%;
    padding: 20px;
    max-width: 650px;
    border-radius: 10px;
    border: 9px solid brown;
    text-align: center;
}
.IMG {
    margin-top: 10px;
    border: 2px solid orange;
    border-radius: 50%;
}

.text {
    padding: 10px;
    background-color: rgb(255, 163, 5);
    margin: 15px auto;
    border: 5px solid brown;
    border-radius: 10px;
    text-align: justify;
    font-size: 12px;
    max-width: 380px;
    color: black;
}

.Album {
    display: inline-block;
    padding: 7px 15px;
    background-color: rgb(255, 163, 5);
    border: 5px solid brown;
    border-radius: 10px;
    font-size: 12px;
    text-decoration: none;
    color: black;
    margin: 10px auto;
    transition: transform 0.5s;
}

.Redes {
    padding: 10px;
    background-color: rgb(240, 234, 225);
    border: 3px solid brown;
    border-radius: 10px;
    font-size: 14px;
    margin: 15px auto 10px;
    margin-top: 0px;
    color: black;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    color: black;
}

.SOCI {
    background-color: rgb(240, 234, 225);
    border: 3px solid brown;
    border-radius: 10px;
    padding: 5px 10px;
    text-decoration: none;
    color: black;
    transition: transform 0.5s;
    display: inline-block;
}

.SOCI:hover {
    transform: scale(1.1);
}
.Album:hover{
    transform: scale(1.1);
}
.card {
    background-color: #111;
    color: white;
    border-radius: 10px;
    border: 3px solid brown;
    padding: 15px;
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}
.IMGA {
    width: 160px;
    height: 160px;
    border-radius: 9px;
    background-color: rgb(255, 163, 5);
    padding: 5px;
    margin-bottom: 10px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 60px;
     
}
.card p {
    font-size: 12px;
    text-align: justify;
}
h1 {
    text-align: center;
    color: white;
    margin-bottom: 20px; 
}
.boton i {
    display: flex;
    flex-direction: column;  
    align-items: center;    
    justify-content: center; 
    padding: 10px 20px;
    background-color: whitesmoke;
    color: black;
    border-radius: 45%;
    cursor: pointer;
    gap: 5px;              
    font-size: 16px;
    transition: transform 0.4s;
}
.boton:hover {
    transform: scale(1.1);
}
a {
        text-decoration: none;
        color: aliceblue;
}