* {
    margin: 0;
}

html {
    height: 100%;

}

main {
    height: 100vh;
    background-color: #0e0b12;
    background-image: url('./assets/background_pc.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 170%;
    padding-top: 5%;

}


h1 {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -8px;
    margin-bottom: -8px;
}

#title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #e5dfed;
    font-family: 'Tenor Sans', sans-serif;
    /* border: solid 2px orange; */
    width: 70%;
    font-size: 1.7em;
    margin-left: auto;
    margin-right: auto;
}



@media screen and (min-width: 1050px) {
    main {
        background-size: 100%;
    
    }

    #title {
        width: 60%;
        font-size: 2.1em;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

}


