.flex {
    display: flex
}

.center {
    justify-content: center;
    align-items: center;
}

.flexcol {
    flex-direction: column;
}

.between {
    justify-content: space-around;
}

.font {
    font-family: 'Lato', sans-serif;
}

.fontb {
    font-family: 'Lato', sans-serif;
}

.fontl {
    font-size: x-large;
}

.fontw {
    color: #FFFFFF;
}

.fontblack {
    color: #0000;
}

.maincontainer {
    margin-top: 12%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.border {
    /* border: 6px solid #C23B33; */
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

body {
    background-color: #636C75;
}

@media only screen and (max-width: 768px) {
    .container {
        width: 90%;
    }
}

@media only screen and (max-width: 480px) {
    .container {
        width: 95%;
    }

    .fontl {
        font-size: large;
        /* Ajusta el tamaño de fuente para pantallas más pequeñas */
    }
}


.codigo {
    background-color: #e2e0e0;
    padding: 10px;
    border: 1px solid #e2e0e0;
    border-radius: 5px;
}

#codigo-ejemplo {
    font-family: monospace;
    white-space: pre;
}

#copiar-codigo {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#copiar-codigo:hover {
    background-color: #3e8e41;
}



