@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Playfair Display", serif;
    height: 300vw;
    cursor: default;
}
.color {
    background-image: url(img/_DSC5502.avif);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}
section.one {
    background: rgb(30,63,52);
    background: linear-gradient(0deg, rgba(30,63,52,0.7959558823529411) 4%, rgba(182,182,182,0) 100%);
    height: 100%;
    color: white;
}
nav {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
nav p {
    margin-left: 20px;
}
nav ul {
    display: flex;
    gap: 20px;
    list-style-type: none;
    margin-right: 20px;
}
section.hero {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .text {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero .text ul {
    display: flex;
    list-style-type: none;
    gap: 20px;
}
.hero .text p {
    font-size: 2rem;
}
.hero .text h1 {
    font-size: 6rem;
}
/* SECION MAIN */
section.main {
    height: 700vh;
    background: rgb(30,63,52);
    background: linear-gradient(180deg, rgb(30,63,52) 34%, rgba(182,182,182,1) 100%);
    
}