*{
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #FFE5F1 0%, #E5F3FF 50%, #F0E5FF 100%);
    color: transparent;
    padding: 3%;
}

.container{
    max-width: 800px;
    margin: 0 auto;
    background: rgb(255, 250, 254);
    border-radius: 50px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(228, 123, 202, 0.521);
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1{
    font-size: 7vh;
    margin-top: -3%;
    font-weight: 800;
    background: linear-gradient(0deg, #FF69B4, #FFB6C1, #DDA0DD);
    background-clip: text;
    text-shadow: 0 4px 8px rgba(247, 129, 188, 0.432);
}

p{
    font-size: 3vh;
    color: #8B7D8B;
}

table{
    background: white;
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.822);
}

table, th, td{
    border: 1px solid rgba(113, 49, 133, 0.671);
    border-collapse: collapse;
}

.colunas{
    background: linear-gradient(135deg, #FFB6C1 0%, #DDA0DD 50%, #B0E0E6 100%);
}

th{
    padding: 20px 15px;
    font-weight: 700;
    font-size: 3vh;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

td{
    width: 20%;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    color:rgb(113, 49, 133);
}

img{
    width: 50%;
}

img:hover{
    transform: scale(1.1);
}

#verde,
#rosa,
#marrom{
    transition: all 0.6s ease;

}
#verde:hover{
    background-color: rgb(160, 233, 142);
    color: white;
}
#rosa:hover{
    background-color: rgba(255, 29, 97, 0.842);
    color: white;
}
#marrom:hover{
    background-color: rgb(153, 100, 100);
    color: white;
}