* {
    font-family: "Noto-Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
    background-color: #0d2c40;
    opacity: 1;
    background-image: radial-gradient(circle at center center, #5fa8d3, #0d2c40);
    background-blend-mode: multiply;
}

.wrapper {
    display: flex;
    justify-content: center;
}

.wrapper h1 {
    border: #5fa8d3 2px solid;
    color: #ffffff;
    padding: 0.5em;
    border-radius: 10px;
}

h2 {
    margin: 0.5em 1em;
    color: #d8f3dc;
}

div {
    display: flex;
    justify-content: center;
    gap: 10em;
}

div a {
    padding: 0.5em;
    text-decoration: none;
    color: white;
    font-size: 4em;
    border: #5fa8d3 2px solid;
    border-radius: 10px;
    background-color: #0d2c40;
    width: 7em;
    text-align: center;
    margin: 1.5em;
    transition: background-color ease 0.5s, transform ease 0.2s;
}

div a:hover {
    background-color: #5fa8d3;
    transform: scale(105%);
}

@media (max-width: 900px) {
    div {
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }

    div a {
        font-size: 2em;
        width: 80%;
    }
}
