@font-face {
    font-family: 'Mont-HeavyDEMO';
    src: url('/fonts/Mont-HeavyDEMO.otf') format('opentype');
}

body {
    background-color: #8fdf80;
    background-image: url('/assets/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;

    font-family: Mont-HeavyDEMO;
    color: white;
}

@media (max-width: 1625px) {
    body {
        background-position-x: right;
        background-size: auto 100vh;
    }
}   

p {
    font-size: 20px;
    text-shadow: 0px 2px 0px #6cab64;
}

h1 {
    font-size: 100px;
    text-shadow: 0px 1px 0px #6cab6450, 0px 2px 0px #6cab6450, 0px 3px 0px #6cab6450, 0px 4px 0px #6cab6450, 0px 5px 0px #6cab6450, 0px 6px 0px #6cab6450, 0px 7px 0px #6cab6450, 0px 8px 0px #6cab6450;
    margin-top: 50px;
    text-align: center;
}


@media (max-width: 768px) {
    body {
        background-position-x: right;
        background-size: auto 100vh;
    }

    p {
        font-size: 20px;
        text-shadow: none;
    }

    h1 {
        font-size: 50px;
    
        text-shadow: 0px 5px 0px #6cab6475;
    }
}   

.social-container {
    min-height: 50vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    gap: 20px;
}

.social {
    width: 100px;
    height: 100px;
    transition: transform 0.1s ease-in-out;
}

.social:hover {
    transform: scale(1.1);
}

.social img {
    width: 100%;
    height: 100%;
}