* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

#main {
    width: 100%;
    background-color: #f6f6ee;
}

#nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 15vh;
    background-color: #f6f6ee;
    padding: 0 4vw;
}

#nav #text h3 {
    font-weight: 300;
    font-family: 'Playfair display';
    letter-spacing: 2px;
}

#nav #text h3 span {
    font-weight: 900;
}

#nav #link {
    display: flex;
    gap: 30px;
    padding: 5px auto;
}

#link a {
    text-decoration: none;
    color: black;
    font-weight: 400;
    letter-spacing: 3px;
}

#text2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 40vh;
}

#text2 h1 {
    font-size: 40px;
    font-family: 'Playfair Display';
    font-weight: 700;
}

#text2 p {
    color: black;
    font-size: 20px;
    text-align: center;
    margin: 20px 0px;
    font-family: 'Playfair Display';
    width: 50%;
}

#text2 button {
    background-color: black;
    color: antiquewhite;
    border-radius: 50px;
    padding: 12px 32px;
}

#illus {
    width: 100%;
}

#illus img {
    width: 100%;
}

#details {
    display: flex;
    justify-content: space-between;
    padding: 5vw 5vw;
    width: 100%;
    margin-top: 50px;
}

#details #dleft {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 50px;
    border-right: 2px solid #000;
}

#dleft #smline {
    width: 10%;
    height: 2px;
    background-color: #000;
    margin: 40px 0;
}

#details #dleft p {
    width: 40%;
    text-align: right;
    font-size: 16px;
}

#details #dright {
    width: 48%;
}

#details .feat {
    display: flex;
    gap: 20px;
}

.feat p {
    margin-top: 10px;
    font-size: 16px;
    width: 50%;
}