body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: #343a40;
    overflow: hidden;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.navbar a {
    display: none;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 15px;
    text-decoration: none;
    font-size: 16px;
}

.navbar a:hover {
    background-color: #575d63;
    color: white;
}

.content {
    background-color: darkslategrey;
    padding: 20px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    padding: 20px;
    text-align: center;
    max-width: 90%;
}

.logo img {
    width: 100%;
    height: auto;
    box-shadow: 0 0 10px rgb(0 0 0 / 55%);
    border-radius: 10px;
}

.home {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hamburger-container {
    display: none;
    align-items: center;
}

.hamburger {
    cursor: pointer;
    padding: 14px 15px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
}

.logo-text {
    color: #f2f2f2;
    font-size: 16px;
    margin-left: 10px;
}

@media (max-width: 600px) {
    .navbar a {
        display: none;
    }

    .navbar.active a {
        display: block;
        text-align: left;
        padding-left: 20px;
    }

    .hamburger-container {
        display: flex;
    }

    .logo-text {
        display: inline-block;
    }
}

@media (min-width: 600px) {
    .navbar a {
        display: block;
        float: left;
    }

    .home {
        flex-direction: row;
        justify-content: space-between;
    }

    .highlight {
        max-width: 60%;
    }

    .logo img {
        width: auto;
    }
}