/* 
    Header
*/
header {
    display: flex;
    flex-direction: row;
    justify-content: baseline;
    align-items: center;
    background-color: #000000;
    height: 200px;
    background: linear-gradient(rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.59)),
    url("../img/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.logo {
    flex-grow: 1;
}

.logo img {
    width: 300px;
    padding: 10px 15px 10px 15px;
    margin-left: 15%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
}
