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

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Josefin Sans", sans-serif;
}

html{
    scroll-behavior: smooth;
}

/* ------nav----- */

nav{
    height: 12.5vh;
    width: 100vw;
    max-width: 1440px;
    background-color: rgb(0 0 0 / 0%);
    display: flex;
    padding-left: 4.4%;
    padding-right: 4.4%;
    position: fixed;
    z-index: 6;
    color: #dce6e3;
    align-items: center;
    justify-content: space-between;
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    width: 37vw;
    justify-content: space-between;
    list-style: none;
    font-size: 1.5rem;
    display: flex;
    font-weight: bold;
}

nav ul a{
    text-decoration: none;
    color: #dce6e3;
}

.title{
    font-size: 16px;
    line-height: 20px;
    color: #3a3a3a;
    font-weight: 300;
    letter-spacing: 1px;

}

.l-text{
    font-size: 40px;
    font-weight: 300;
}

.m-text{
    font-size: 32px;
    line-height: 1.25;
    font-weight: 300;
}
