/*--------------------------------------------

first-view

--------------------------------------------*/
#first-view{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 5%;
    justify-content: center;
}
#first-view h1{
    font-size: 6.5rem;
    letter-spacing: 0.1em;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}
#first-view h1 .serif{
    font-weight: 400;
}
#first-view p{
    letter-spacing: 1em;
    font-weight: 300;
    font-size: 2rem;
}

/*--------------------------------------------
max-width 1080
--------------------------------------------*/
@media (max-width: 1080px) {
    #first-view h1{
        font-size: 5rem;
    }
}
/*--------------------------------------------
max-width 600
--------------------------------------------*/
@media (max-width: 600px) {
    #first-view h1{
        white-space: nowrap;
        font-size: 3rem;
    }
    #first-view p{
        letter-spacing: 0.5em;
        font-size: 1.5rem;
    }
}
