@font-face {
    font-family:"ivypresto-display";
    src:url("../fonts/ivypresto-display.woff2") format("woff2"),
    url("../fonts/ivypresto-display.woff") format("woff"),
    url("../fonts/ivypresto-display.otf") format("opentype");
    font-display:auto;
    font-style:italic;
    font-weight:100;
    font-stretch:normal;
}

@font-face {
    font-family: 'milling';
    src: url('../fonts/MILLINGRegular.woff2') format('woff2'),
        url('../fonts/MILLINGRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    background-color: #000;
    height: 100%;
    /* overflow: hidden; */
}
canvas {
    display: block;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

picture 
{
    /* margin-top: 10%; */
    display: flex;
    justify-content: center;
    /* margin-bottom: 90px; */
    margin-bottom: 15%;
}

.contact-info {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
}

.contact-info a {
    font-size: 40px;
    color: #fff;
    text-decoration: none;
    font-style: italic;

    font-family: "ivypresto-display", serif;
    font-weight: 100;
}

.contact-info address {
    display: inline-block;
    color: #00ff00;
    font-size: 21px;
    font-style: normal;
    margin-top: 10px;
    font-family: "milling", sans-serif;
    text-transform: uppercase;
}

.social-links {
    margin-top: 40px;
}

.social-links a{
    margin: 0 10px;
    
}

.social-links a:hover svg {
    fill: #00ff00;
}



.social-links svg {
    fill: #fff;
    width: 28px;
    transition: all 0.5s;
}


footer {
    position: fixed;
    width: 100%;
    height: 20px;
    bottom: 40px;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    color: #4e4e4e;
    font-size: 13px;
    text-transform: uppercase;
    font-family: "milling", sans-serif;
}

.copyright-mobile {
    display: none;
}

#logo-canvas-sm {
    display: none;
}



@media (max-width: 900px) { 
    body {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding-top: 15%;
    }
    #logo-canvas-hd {
        display: none;
    }
    #logo-canvas-sm {
        display: block;
        width: 230px;
        height: 322px;
        margin: 0 auto;
        margin-bottom: 50px;
    }
    .social-links a {
        margin: 0 20px;
    }
    .slogan {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .copyright {
        display: none;
    }
    .copyright-mobile {
        display: block;
    }
    footer {
        display: block;
        position: static;
        margin-bottom: 50px;
        height: auto;
        margin-top: 30px;
        padding-bottom: 30px;
    }
    footer span {
        display: block;
        text-align: center;
    }
    .contact-info a {
        font-size: 30px;
    }
    .contact-info address {
        font-size: 16px;
        line-height: 24px;
        margin-top: 5px;
    }
    address span {
        display: block;
    }
}