@font-face {
    font-family: 'MiFuente'; /* Nombre personalizado para usar en tu CSS */
    src: url('/LEMONMILK/LEMONMILK-Bold.otf') format('opentype');
    font-weight: normal; /* Puedes ajustar según el peso de la fuente */
    font-style: normal; /* Puedes cambiar a 'italic' si la fuente lo soporta */
}
@font-face {
    font-family: 'MiFuenteLigth'; /* Nombre personalizado para usar en tu CSS */
    src: url('/LEMONMILK/LEMONMILK-Light.otf') format('opentype');
    font-weight: normal; /* Puedes ajustar según el peso de la fuente */
    font-style: normal; /* Puedes cambiar a 'italic' si la fuente lo soporta */
}
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body{
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'MiFuente';

}
div h1 {
    font-size: 7vw; /* El tamaño se ajusta proporcionalmente al ancho de la ventana */
}
a{
    text-align: center;
    margin-top: 1rem;
    font-size: 1.5rem;
    font-family: 'MiFuenteLigth';
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: none;
    cursor: pointer;
    width: 40vw;
    text-decoration: none;
}
a:hover{
    transform:  scale(1.4);
}
@media (max-width: 768px) {
    div h1 {
        font-size: 8vw;
    }
    a {
        margin-top: 60px;
        font-size: 1.2rem;
        width: 70%;
    }
}