@font-face {
    font-family: "Heavitas";
    src: url("./resources/fonts/heavitas-webfont.eot");
    src: url("./resources/fonts/heavitas-webfont.woff") format("woff");
    src: url("./resources/fonts/heavitas-webfont.woff2") format("woff2"),
        url("./resources/fonts/heavitas-webfont.svg") format("svg"),
        url("./resources/fonts/heavitas-webfont.ttf") format("ttf");
}

body {
    background-color: black;
    color: white;
    font-family: 'Heavitas', Arial, Helvetica, sans-serif;
}

.logo {
    max-width: 450px;
    display: block;
    height: auto;
    margin: 50px auto;
    padding: 0 0 0 10px;
}

img {
    width: 100%;
}

.links {
    display: flex;
    justify-content: center;
}

.link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link i {
    font-size: 35px;
    padding: 10px;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: white;
}

@media only screen and (min-width: 640px) {
    .logo {
        width: 450px;
        margin-bottom: 70px;
    }

    .link i {
        font-size: 50px;
    }

    a:link,
    a:visited,
    a:hover,
    a:active {
        text-decoration: none;
        color: white;
        font-size: 30px;
    }
}

@media only screen and (min-width: 1264px) {
    .logo {
        min-width: 700px;
        margin: 100px auto 50px;
    }


    a:link,
    a:visited,
    a:hover,
    a:active {
        text-decoration: none;
        color: white;
        font-size: 46px;
    }

    .links {
        display: flex;
        justify-content: center;
    }

    .link {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .link i {
        font-size: 70px;
        padding: 20px;
    }

    .tooltiptext {
        visibility: hidden;
        margin: 0 -300px;
        font-size: 40px;
    }

    .link:hover .tooltiptext {
        visibility: visible;
    }
}