body {
    background: rgb(0, 0, 0);
    text-align: center;
    display: grid;
    place-items: center;
    min-height: 90vh;

    margin: 0;
}

.box {
    width: min(600px, 90);
}
#text{
    color: white;
    text-align: center;
}

#image{
    height: 200px;
    width: auto;
}

body {
    opacity: 1;
    transition: opacity 0.6s ease;
}

body {
    opacity: 0;
    transition: opacity 0.8s ease;
}

body.fade-in {
    opacity: 1;
}

.button {
    background-color: black;
    color: rgb(151, 29, 29);
    
}