html, body {
    
    margin: 0;
    position: relative;
}

.body {
    font-family: "Poppins", sans-serif;
    @media (max-width: 770px) {
        background-image: url("./mighty-match-mobile.jpg");
    }
    @media (min-width: 770px) and (max-width: 1200px) {
        background-image: url("./mighty-match-table.jpg");
    }
    @media (min-width: 1200px) {
        background-image: url("./mighty-match-desktop.jpg");
    }

    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
    background-attachment: fixed; 

    /* overflow: hidden; */
    position: relative;
    height: calc(100vh);
}


.subtitle {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    color: #ffffff;
}

.title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    color: #ffffff;
    font-size: 100px;
    @media (max-width: 390px) {
        font-size: 36px;
    }
    @media (max-width: 770px) {
        font-size: 45px;
        margin: 10px 0 0;
    }
    @media (max-width: 1200px) {
        font-size: 60px;
    }
    @media (min-width: 1200px) and (max-width: 1300px) {
        font-size: 80px;
    }
    margin: 10px 0 0;
}

a {
    text-decoration: none;
    background: transparent;
}

.link-container {
    padding-top: 50px;
}

.container {
    position: absolute;
    left: 50px;
    top: 40%;
    @media (max-width: 770px) {
        left: 20px;
        top: 10%;
    }
    @media (min-width: 1200px) {
        top: 20%;
    }
}