*{
    margin: 0;
    padding: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 110vh;
    overflow: hidden;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-image: url("background.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 110vh;
    color: #fff;
    z-index: 10;
}

.container::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 110vh;
    background-color: #0006;
    z-index: -10;
}

.info{
    padding: 90px 10px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

h1{
    color: #fffd;
    font-size: 2.4rem;
    text-wrap: pretty;
}

h2{
    font-size: 1.2rem;
}

@media screen and (min-width:600px){
    .info{
        gap: 10px;
    }

    h1{
        font-size: 3rem;
    }

    h2{
        font-size: 1.4rem;
    }
}