
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}


.container_top {
    position: relative;
  
     
}


.ovalo {
    width: 200px;
    height: 100px;
    background-color: #b6ff00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 20px;
    text-align: center;
    transition: background-color 0.3s, box-shadow 0.3s;
}


.rectangulo {    
    background-color: #5acf5f;
    border-radius: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 20px;
    text-align: center;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.rectangulo:hover {
    background-color: #45a049;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}



.rectangulo_solo_borde {
    border-style: ridge;
 
}
 



.login {
    width: 200px;
    height: 30px;
    background-color: #ffd800;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 20px;
    text-align: center;
    transition: background-color 0.3s, box-shadow 0.3s;
    position: absolute;
    bottom: 20px;
}

    .login:hover {
        background-color: #ff6a00;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }





.no-subrayado {
    text-decoration: none;
    color: black; /* Puedes cambiar el color si lo deseas */
}



