body {
    margin: 0;
    overflow-y: hidden;
}

* {
    box-sizing: border-box;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;

    a {
        position: relative;
        top: -5%;
        display: flex;
        flex-direction: column-reverse;
        font-size: 2rem;
        color: #000;
        text-decoration: none;
        text-align: center;

        &:hover {
            text-decoration: underline;
        }

        @media (max-width: 800px) {
            font-size: 1.5rem;
        }

        img {
            width: 50vw;
            @media (max-width: 800px) {
                width: 80vw;
            }
        }

    }
}
