@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-color: #0d1b3e;
}

.hero {
    position: relative;
    background-image: url(../img/bg-hero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

.hero:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: rgba(13, 27, 62, .9); */
    background-color: rgba(0, 0, 0, .9);
    z-index: 1;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(10px);
}

section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
    padding-left: 15px;
    padding-right: 15px;
}

section .content .about h1 {
    color: #fff;
    font-size: 7.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, rgba(215,9,255,1) 0%, rgba(1,218,253,1) 90%, rgba(127,255,199,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

section .content .about p {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-weight: 100;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

section .content .coming-soon {
    position: absolute;
    bottom: 50px;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-weight: 100;
    padding-left: 15px;
    padding-right: 15px;
    letter-spacing: 2px;
}

::selection {
    background: #be4dae;
}

@media (max-width: 1280px) {
    section .content .about h1 {
        font-size: 6rem;
    }
}

@media (max-width: 1020px) {
    section .content .about h1 {
        font-size: 5rem;
    }
}

@media (max-width: 856px) {
    section .content .about h1 {
        font-size: 4rem;
    }

    section .content .about p {
        font-size: 1.25rem;
    }
}

@media (max-width: 680px) {
    section .content .about h1 {
        font-size: 3rem;
    }

    section .content .about p {
        font-size: 1rem;
    }
}