body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-align: center;
    height: 100vh;
    margin: 0;
    background-color: #081110;
    color: whitesmoke;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#logoimg {
    width: 50%;
    height: auto;
    max-width: 100%;
    object-fit: scale-down;
}

@media (max-width: 768px) {
    #logoimg {
        width: 50%;
    }
}

@media (max-width: 480px) {
    #logoimg {
        width: 75%;
    }
}

button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
}

button:hover {
    background-color: #3da8fe;
    color: #081110;
    cursor: pointer;
}

button:active {
    transform: scale(0.95);
}

/* #3DA8FE */