/***************************************/
body{
    margin: 0;
    font-family: Arial,sans-serif;
    background-color: rgb(121, 248, 174);
}
/***************************************/
header{
    background-color: #246605;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/***************************************/
#logo{
    /*max-width: 10px; */
    width: 70px;
    height: 70px;
    border: 1px solid black;
}
/***************************************/
                        nav{
                            flex-grow: 1;
                            text-align: center;
                            size: 20px;
                        }
                        .menu{
                            list-style: none;
                            padding: 0;
                            margin: 0;
                            display: flex;
                            justify-content: flex-end;
                        }
                        .menu li{
                            margin-left: 20px;
                        }
                        .menu a{
                            text-decoration: none;
                            color: #d31212;
                            font-weight: bold;
                        }
/***************************************/
.imagenes{
    display: flex;
    justify-content: space-around;
    background-color: #e8e8e8;
    width: 10px;
    /* height: auto;*/
}
.imagenes img{
    margin: 30px;
    width: 400px;
}
/***************************************/
.button{
    padding: 10px 20px;
    margin: 5px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.button:hover{
    background-color: #45a049;
}
/***************************************/
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 15s linear infinite;
    margin-bottom: 70px;
}
@keyframes marquee {
    0% { 
        transform: translate(100%, 0); 
    }
    100% { 
        transform: translate(-100%, 0); 
    }
}
    /* boton de ayuda y registro */
.top-right{
    position: absolute;
    top: 10px;
    right: 10px;
}
/***************************************/

