html {
    background: rgb(249,249,249);
    background: linear-gradient(180deg, rgba(249,249,249,1) 0%, rgba(201,201,201,1) 100%) fixed;
    font: min(1.2vw, 14pt) Poppins, sans-serif;
}

body {
    padding: 7.5vmax;
    line-height: 1.1;
}

#logo {
    position: fixed;
    right: 2vw;
    top: 2vw;
    width: max(5%, 100px);
}

main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-auto-flow: column;
    max-width: 1600px;
    margin: 0 auto;
}

p {
    margin-bottom: 2vh;
}

strong {
    font-weight: bold;
}

#akson {
    grid-row: 2 / 6;
    font-size: 125%;
}

main div, main h2 {
    margin: 0.5vmax;
}

h1 {
    font-size: 280%;
    font-weight: bold;
}

h2 {
    font-size: 115%;
    font-weight: bold;
}

a {
    transition: all 0.2s ease-in-out;
}

a:link, a:visited {
    color: #5f3cd1;
}

a:active, a:hover {
    background: #5f3cd1;
    color: rgb(249,249,249);
}

main h2 {
    align-self: end;
}

footer {
    position: fixed;
    left: 5vw;
    right: 5vw;
    bottom: 1vmax;
    text-align: center;
}

@media (max-width: 640px) {
    body {
        padding: 1.5vmax;
        font-size: 1.4vh;
    }

    #logo {
        position: fixed;
        right: 2vw;
        top: 2vw;
        width: 17.5%;
    }

    main {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        grid-auto-flow: row;
    }

    main h2 {
        margin-top: 4vh;
    }
}
