@font-face {
    font-family: 'Italiana';
    src: url('./fonts/Italiana-Regular.eot');
    src: url('./fonts/Italiana-Regular.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Italiana-Regular.woff2') format('woff2'),
        url('./fonts/Italiana-Regular.woff') format('woff'),
        url('./fonts/Italiana-Regular.ttf') format('truetype'),
        url('./fonts/Italiana-Regular.svg#Italiana-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.1em;
    position: relative;
    overflow-x: hidden;
    font-family: 'Italiana', sans-serif;
    display: flex;
    flex-direction: column;
    background: #1E1E1E;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

body::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: url('./images/left.svg') center no-repeat;
    width: 379px;
    height: 535px;
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url('./images/right.svg') center no-repeat;
    width: 371px;
    height: 416px;
    pointer-events: none;
    z-index: -1;
}

.title {
    font-family: 'Italiana';
    font-style: normal;
    font-weight: 400;
    font-size: 6rem;
    text-align: center;
    color: #FFFFFF;
    line-height: 1;
    padding-bottom: 100px;
}

.logo {
    display: block;
    margin: auto;
    max-width: 200px;
}

.instagram-link {
    display: block;
    text-indent: -9999px;
    background: url('./images/instagram.svg') center no-repeat;
    width: 44px;
    height: 44px;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: auto;
}

.main {
    z-index: 1;
}

@media all and (min-width: 480px) {
    .title {
        font-size: 9rem;
        padding-bottom: 100px;
    }

    .logo {
        max-width: 240px;
    }
}

@media all and (min-width: 768px) {
    .title {
        font-size: 12rem;
        padding-bottom: 150px;
    }

    .logo {
        max-width: 300px;
    }
}