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

body {
    font-family: "Quicksand", sans-serif;
    background: #f9f9f9;
    color: #303030;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
}

/* :target {
    background: red;
} */

.window:target{
    display: flex;
}

.window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #2d2d2d;
    z-index: 99;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    display: none;
}

.window h4 {
    text-align: center;
    font-weight: 400px;
    font-size: 24px;
    color: blue;
}

.window form{
    width: 400px;
    height: 400px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

.nav {
    background: #2d2d2d;
    height: 75px;
}

.nav .burger {
    border: 1px solid #aaa;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: none;
    justify-content: center;
    align-items: center;
}

.nav>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    gap: 120px;
    font-weight: 500;
}

.item {
    height: 100%;
}

.logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav .link {
    font-weight: 500;
    font-size: 20px;
    line-height: 375%;
    color: #fff;
    transition: 0.5s;
    opacity: 0.5;
}

.nav .link:hover {
    opacity: 1;
}

.icons {
    display: flex;
    gap: 40px;
}

.header .content {
    height: 731px;
    background-image: url(../img/perfume\ line.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header h1 {
    font-weight: 500;
    font-size: 96px;
    line-height: 78%;
    color: #fff;
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.more {
    border-radius: 12px;
    width: 199px;
    height: 75px;
    background: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 375%;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.title {
    font-size: 40px;
    line-height: 188%;
    text-align: center;
    margin-top: 100px;

}

.about p {
    font-weight: 500;
    font-size: 20px;
    line-height: 200%;
    text-align: center;
    margin-top: 40px;
}

.collection .box {
    display: flex;
    align-items: start;
    gap: 30px;
    margin-bottom: 100px;
}

.collection .title {
    margin-bottom: 80px;
}

.collection img {
 max-width: 555px;
 width: 100%;
}

.collection h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 94%;

}

.collection p {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    margin-top: 37px;
    margin-bottom: 80px;
}

.collection a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 160px;
    height: 75px;

    background: #000;
    color: #fff;

    text-decoration: none;
    font-size: 16px;
    font-weight: 500;

    border-radius: 12px;
    transition: 0.3s ease;
}

.footer .nav {
    padding: 70px 0;
    height: auto;
}
