@font-face {
    font-family: Playlist Script;
    src: url('../fonts/Playlist Script.otf');
}

@font-face {
    font-family: Montserrat-Regular;
    src: url('../fonts/Montserrat-Regular.ttf'); 
  }

body {
    margin: 0;
}

* {
    box-sizing: border-box;
}

.slider {
    display: block;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #000;
}

.slider-item {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    padding-right: 75px;
    padding-left: 75px;
    padding-bottom: 40px;
    padding-top: 20px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.5);
}

.logo-bar {
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
}

.logo-bar > h3 {
    color: white;
    font-family: 'Montserrat-Regular';
    font-size: 22px;
}

.main-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 80px;
    padding-bottom: 90px;
}

.main-content > h3 {
    color: white;
    font-family: 'Playlist Script';
    font-size: 180px;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
    margin: 0;
    margin-bottom: 80px;
    padding: 0;
}

.main-content > p {
    color: white;
    text-align: center;
    font-size: 40px;
    font-family: 'Montserrat-Regular';
    margin: 0;
}

@media (max-width: 992px) {
    .main-content > h3 {
        font-size: 160px;
    }
}

@media (max-width: 768px) {
    .main-content > h3 {
        font-size: 120px;
    }
}

@media (max-width: 576px) {
    .main-wrapper {
        padding-right: 15px;
        padding-left: 15px;
    }

    .logo-bar {
        justify-content: center;
    }

    .main-content > h3 {
        font-size: 80px;
        margin-bottom: 50px;
    }

    .link-set {
        flex-direction: column;
        align-items: center;
    }

    .link {
        margin-top: 10px;
    }
}