*
{
    padding: 0px;
    margin: 0px;
}

body 
{
    font-family: sans-serif;
}

#error-container
{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}

#error-text
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;
    top: -30px;
}

#error-container img
{
    width: 250px;
    position: relative;
    top: -50px;
}

#error-container h2 
{
    color: gray;
}

#error-text p
{
    margin: 5px 0 20px 0;
}

#error-text button
{
    width: 200px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid black;

    cursor: pointer;

    background-color: rgb(22, 22, 22);
    color: white;

    transition: .3s;
}

#error-text button:hover 
{
    background-color: rgb(54, 54, 54);
}