body, html {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

header {
    display: flex;
    flex-direction: column;
    margin: 0;
    width: 100%;
    height: 60px;
}

.title {
    font-size: 32px;
    font-weight: bold;
    margin: 24px;
    text-align: center;

}

span.flex {
    flex: 1;
}

nav {
    display: flex;
    flex-direction: row;
    position: relative;
    background-color: #e2dedb;
    color: black;
    width: 100%;
    height: 50px;
    margin: 0;
    overflow: scroll;
}

nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
    text-decoration: none;
    font-size: medium;
    white-space: nowrap;
    word-spacing: 3px;
    margin: 0 10px;
    height: inherit;

    background: inherit;
    border-radius: 24px;
    padding: 0 12px;
}

nav a.active {
    color: rgb(199, 67, 89);
    pointer-events: none;
}


form {
    margin: 0 auto;
}

form > * {   /* (*) Star takes all elements in the form */
    width: inherit;
    max-width: inherit;
}


.parfums-list {
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-sizing: border-box;

}

.parfum-info {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    padding: 24px 0;
    border-bottom: 1px solid darkgrey;
 
}
.parfum-info img {
    height: 400px;
    width: 400px;
    
}

.parfum-info article {
    flex: 1;
    padding: 24px;
    font-family: 'Ruluko', sans-serif;
    color: black;
    }

article > h2 {
    font-size: 40px;
    margin-bottom: 10px;
}


.hero-image {
height: 100vh;
min-height: 100vh;
}


footer {
    text-align: center;
    height: 60px;
    min-height: 60px;
}





@media (min-width: 460px) {
    header {}

    header h1 {}

    nav {}
    
    form {}
}
