* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.header {
    background-color: #fff;
    font-family: 'Bai Jamjuree', sans-serif;
}

.footer {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 5px;
    background-color: #2C2C2C;
    color: white;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}
  
.menu {
    background-color: transparent;
    font-size: 18px;
    display: inline-block;
    box-sizing: border-box;
    padding: 18px 18px;
    text-decoration: none;
    color: white;
}
  
.logo {
    font-weight: 200;
    background-color: transparent;
    font-size: 40px;
    display: inline-block;
    box-sizing: border-box;
    padding: 10px 10px;
    text-decoration: none;
    color: white;
}

.logo img {
    width: 30%;
    height: 30%;
    padding: 5px;
}

#panorama {
    width: 80%;
    height: 800px;
    top: 10%;
    left: 10%;
    border-radius: 10px;
    outline-style: solid;
    outline-offset: -0.5em;
    background-color: #2c2c2c;
    border: 4px solid #2c2c2c;
}

.main {
    padding-top: 25px;
}

/*navbar*/
.navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    background-color: #2C2C2C;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.brand-title img{
    height: 50%;
    width: 50%;
    padding-left: 15px;
}

.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 2px;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 1rem;
}

.navbar-links li :hover {
    background-color: #4c4c4c;
    transition: .8s;
    border-radius: 25px;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 45px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }
}