@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(0, 0, 0, .4);
    position: relative;
    height: 100vh;
    padding: 0 1rem;
}

.logo{
    background-image: url(assets/N&A.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 290px;
    width: 290px;
    margin-bottom: 1.5rem;
}

.hero h1{
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .15rem;
    line-height: 120%;
    text-transform: uppercase;
    color: #f2f2f2;
    margin: 0;
    margin-bottom: .4rem;
}

.hero p{
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
    color: #f2f2f2;
    margin: 0;
}

.hero img{
    position: absolute;
    top: 0px;
    left: 0;
    object-fit: cover;
    z-index: -10;
    width: 100vw;
    height: 100vh;
}


@media screen and (min-width:720px) {

    .hero{
        padding: 0 3rem;
    }

    .logo{
        height: 330px;
        width: 330px;
    }

    .hero h1{
        font-size: 20px;
    }

    .hero p{
        font-size: 14px;
    }
}

@media screen and (min-width:1024px) {

    .hero{
        padding: 0 5rem;
    }

    .logo{
        height: 360px;
        width: 360px;
    }

    .hero h1{
        font-size: 18px;
    }

    .hero p{
        font-size: 12px;
    }
}