@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Outfit', sans-serif;
}

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

.intro-page {
    background: url('../img/intro/intro-bg.jpeg') no-repeat;
    background-size: cover;
    background-position: center bottom;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.intro-page::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.intro-logo {
    background: #fff;
    border-radius: 3px;
    padding: 6px;
    position: absolute;
    top: 24px;
    left: 24px;
}


.intro-logo img {
    height: 80px;
}

.intro-content {
    width: 68%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.intro-content h1 {
    font-size: 30px;
    font-weight: 200;
    color: #fff;
    margin-bottom: 24px;
}

.intro-content h1 span {
    color: #A5A93B;
}

.intro-content a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    padding: 8px 24px;
    border-radius: 3px;
    background: #A5A93B;
    display: inline-block;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


@media(max-width:768px) {
    .intro-logo {
        position: relative;
        top: 0;
        left: 0;
        margin: 12px;
        text-align: center;
    }

    .intro-content {
        width: 90%;
    }

    .intro-content h1 {
        font-size: 22px;
    }
}

@media(max-width:475px) {
    .intro-logo img {
        height: 50px;
    }
}