.banner {

    background-size: cover;
    height: 400px;
    margin-bottom: 32px;
    width: 100%;

}

.logo {

    height: 60px;
    width: 200px;
    
}

header {

    align-items: center;
    background-color: #d18fb5;
    display: flex;
    height: 50px;
    justify-content: space-between;
    left: 0;
    padding: 8px;
    right: 0;
    top: 0;

}

.menu ul {

    display:grid;
    grid-gap: 8px;
    grid-template-columns: repeat(3,1fr);
    list-style-type: none;
}

.menu a {

    color:#f9f0fa;
    padding: 5px;
    text-decoration: none;
    text-transform: uppercase;

}

.menu a:hover {

    color: #4d1a3c;
     
}