* {
    font-family: monospace;
}

html, body {
    margin: 0;
    padding: 0;
}

#container, #main {
    height: 100vh;
}

#main {
    color: rgb(95, 255, 47);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #222222;
}

#info {
    left: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background: url('/site/logo.png');
    background-size:auto;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #3f3f3f;
    padding: 10px;
    border-radius: 8px;
}

button {
    padding: 10px 16px;
    font-size: 15px;
    border-radius: 8px;
    background: #222222;
    border: none;
    color: white;
    transition: all .3s ease-in-out;
}

button:hover {
    transform: scale(1.05);
}

.title {
    font-weight: bolder;
    font-size: 10em;
    text-shadow: 0px 0px 30px rgb(95, 255, 47);
}