@font-face {
    font-family: "madetommyregular";
    src: url("https://valentincarroy.fr/public/assets/font/made_tommy_regular.otf");
    src: url("https://valentincarroy.fr/public/assets/font/made_tommy_regular.woff") format("woff"),
    url("https://valentincarroy.fr/public/assets/font/made_tommy_regular.woff2") format("woff2");

    font-weight: normal;
}

body {
    background: #0E192F;
    text-align: center;
    color: white;
    /*font-family: 'Lato', sans-serif;*/
    margin: 0;
    font-family: 'madetommyregular', 'Lato', sans-serif;
}

h1, h2, p {

}

main {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 20px;
}

h1 {
    font-size: 80px;
}

h2 {
    font-size: 55px;
}

p {
    font-size: 25px;
}

footer {
    position: fixed;
    top: 100vh;
    left: 50%;
    transform: translate(-50%, -100%);
}

footer p {
    font-size: 21px;
}

footer a:link, footer a:visited, footer a:hover, footer a:active {
    color: white;
}

body > img {
    width: 500px;
    height: 500px;
    position: fixed;
}

#logo-bg-left {
    top: -80px;
    left: -190px;
}

#logo-bg-right {
    bottom: -60px;
    right: -290px;
}

@media screen and (max-width: 640px) {
    main {
        position: initial;
        transform: initial;
        top: initial;
        left: initial;
        margin-top: 20%;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 35px;
    }

    body > img {
        width: 130px;
        height: 130px;
    }

    #logo-bg-left {
        top: -20px;
        left: -70px;
    }

    #logo-bg-right {
        bottom: 90px;
        right: -70px;
    }
}

