@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');

:root {
    --bgColor: #fff;
    --bgColor2: #090a0f;
    --accentColor: #1C74BA;
    --font: 'Karla', sans-serif;
    --delay: .3s;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: var(--font);
    opacity: 0;
    animation: 1s ease-out var(--delay) 1 transitionAnimation;
    /* duration/timing-function/delay/iterations/name */
    animation-fill-mode: forwards;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    height: 50vh;
}

#links {
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px auto;
}

.link {
    position: relative;
    background-color: transparent;
    color: var(--accentColor);
    border: solid var(--accentColor) 2px;
    border-radius: 10px;
    font-size: 2rem;
    text-align: center;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px;
    /* 17px */
    text-decoration: none;
    /* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .link:hover {
        background-color: var(--accentColor);
        color: var(--bgColor);
    }
}

@media only screen and (max-width: 600px) {
    .link {
        position: relative;
        background-color: transparent;
        color: var(--accentColor);
        border: solid var(--accentColor) 2px;
        border-radius: 10px;
        font-size: 3rem;
        text-align: center;
        display: block;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
        padding: 10px;
        /* 17px */
        text-decoration: none;
        /* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
        -webkit-tap-highlight-color: transparent;
    }
}

.link:active {
    background-color: var(--accentColor);
    color: var(--bgColor);
}


/*-------------------------animations-----------------------*/
@keyframes transitionAnimation {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}