body{
    background-color: hsl(240, 13%, 13%);
    color: white;
    font-family: Ubuntu, Arial, Helvetica, Calibri, sans-serif;
    overflow: hidden;
    transform: translateY(100%);
    opacity: 0;
    animation: flyUp 1s forwards;
    animation-delay: 0.5s;
}

#outer_parent-div{
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#inner_warning-div{
    text-align: center;
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.51);
    padding: 25px;
    border-radius: 10px;
}

a{
    color: rgba(255, 255, 255, 0.69);
    transition: 0.2s;
}
a:hover{
    color: white;
}

@keyframes flyUp {

    0%{

        transform: translateY(100%);
        opacity: 0;

    }

    50%{

        transform: translateY(30%);
        opacity: 0;

    }

    100%{

        transform: translateY(0%);
        opacity: 1;

    }

}