body, html, .App {
        background: linear-gradient(#5797f5, tomato) no-repeat;
        width: 100vw;
        height: 100vh;
        margin: 0;
         padding: 0;
        max-width: 100%;
         overflow-x: hidden;
}

.App {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
}

.title {
        color: white;
        margin-bottom: 0;
}

.logo {
        width: 64px;
        height: 64px;
        border-radius: 32px;
        background: blanchedalmond;
}

.top-section {
        text-align: center;
        margin-top: 4rem;
}

.link {
        padding: 1rem;
        width: 280px;
        text-align: center;
        margin: 1rem;
        border-radius: 6px;

        pointer-events: auto;
        background: white;
        font-weight: bold;
        border: 3px solid transparent;
}

.link:hover {
        border: 3px solid black;
}

.link-a {
        text-decoration: none;
        color: black;
}

.footer-text {
        color: white;
}

.footer-text a {
        color: white;
        font-weight: bold;
}