html, body{
    height: 100%;
    margin: 0;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    visibility: hidden;
}

#description{
    position: relative;
    width: 70%;
    height: fit-content;
    word-break: break-word;
    white-space: pre-wrap;
}

#contact{
    position: relative;
    width: 70%;
    text-decoration: none;
}

a:visited, a:link, a:hover, a:active{
    text-decoration: none;
    color: inherit; 
}

a:hover{
    color: rgb(167, 167, 167);
}

.left{
    text-align: left;
}

.right{
    text-align: right;
}

@media screen and (max-width: 600px) {
    #description{
        font-size: 12px;
        width: 90%;
    }
    #contact{
        font-size: 12px;
        width: 90%;
        height: fit-content;
    }
    
}