@font-face {
    font-family: ExoExtraBold;
    src: url(assets/fonts/Exo-ExtraBold.ttf);
}

@font-face {
    font-family: ExoSemiBold;
    src: url(assets/fonts/Exo-SemiBold.ttf);
}

@font-face {
    font-family: Courgette;
    font-weight: 500;
    src: url(assets/fonts/Courgette-Regular.ttf);
}
body, html{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

body{
    background-image: url(assets/images/MansMedia-placeholder-blur.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.overlay{
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(0, 0, 0, 0.5);
    z-index: 1;
}

#wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    text-align: center;
}

#wrapper .container{
    z-index: 2;
}

#wrapper .container h1{
    color: #fff;
    font-family: 'ExoExtraBold', sans-serif;
    font-size: 4rem;
    margin: 0;
    margin-top: 100px;
}

#wrapper .container p{
    color: #fff;
    font-family: 'Courgette', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 50px;
    max-width: 67.5%;
    display: inline-block;
}

#wrapper .buttons a{
    font-family: 'ExoSemiBold', sans-serif;
    display: inline-block;
    transition: 0.5s;
    border: 1px solid #fff;
    padding: 15px 30px;
    text-decoration: none;
    margin: 0 10px;
    color: #fff;
}
#wrapper .logo{
    margin-top: 20px;

}

#wrapper .logo img{
    width: 215px;
}


@media only screen and (min-width: 1025px) {
    #wrapper .buttons a:hover{
        background-color: #fff;
        color: #000;
    }
}

@media only screen and (max-width: 768px) {
    .container{
        max-width: 95%;
    }
    #wrapper .container h1{
        font-size: 2.2rem;
    }
    #wrapper .container p{
        max-width: 80%;
    }
    #wrapper .buttons a{
        margin-bottom: 20px;
        max-width: 100%;
    }
    body{
        background-image: url(assets/images/MansMedia-placeholder-blur-small.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    
}
