@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

#content {
    text-align: center;
    color: rgb(210, 220, 255);
    position: absolute;

    width: 100%;
    top: 25%;
    font-size: 2vh;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#logo {
    width: 20vh;
}

#enter_button {
    border: solid thin;
    padding: 1em 2em;
    color: rgb(210, 220, 255);
    text-decoration: none;
    transition: all 0.2s ease 0s;
    background-color: rgba(0, 0, 0, 0.2);
}

#enter_button:hover {
    border: solid thin;
    background-color: rgba(237, 111, 77, 0.8);
}
