body {
    margin: 0;
    font-family: 'Public Sans', sans-serif;
    background-color: #013328;
    color: #4E4C4D;
    background-repeat: repeat;
}

.burger-menu {
    cursor: pointer;
    display: inline-block;
}

.logo {
    display: flex;
    align-items: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vh 10%;
    background-color: #013328;
    background-image: url('../img/header.png');
    color: white;
}

header a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 400;
    text-align: right;
    line-height: 0.8;
    margin-right: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {

    .logo {
        margin-bottom: 20px;
    }

    .burger-menu {
        font-size: 24px;
    }

    h1 {
        font-size: 30px;
    }

    header img {
        height: 50px;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .logo {
        margin-bottom: 20px;
    }

    .burger-menu {
        font-size: 28px;
    }

    h1 {
        font-size: 40px;
    }

    header img {
        height: 60px;
    }
}