body {
    background-color: #000;
    color: #FFF;
    font-family: sans-serif;
}

h1 {
    font-size: 48px;
}

.nav-bar {
    background-color: #000;
    height: 80px;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 16px;
    padding-right: 8px;
    opacity: 0;
    animation: fadeInOpacity 3s forwards;
    @media (max-width: 480px) {
        gap: 8px;
        padding-right: 16px;
    }
}


.nav-button {
    color: #FFF;
    background: none;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
    @media (max-width: 480px) {
        font-size: 12px;
        img {
            width: 24px;
            height: 24px;
        }
    }
}

.content {
    max-width: 100%;
}

.landing-page {
    width: 100%;
    display: flex;
    height: 85vh;
    @media (max-width: 800px) {
        flex-direction: column;
    }
}

.title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInOpacity 3s forwards, fadeInTransform 2s forwards;
}

#landing-page-title {
    text-align: center
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInOpacity 3s forwards, fadeInTransform 2s forwards;
}

.logo {
    width: 80%;
}

.section {
    padding: 32px;
    width: calc(100% - 64px);
}

#weekliesTable {
    width: 100%;
}

.is-today {
    color: green;
}

.map {
    position: relative;
    margin-top: 16px;
    min-height: 200px;
    width: 100%;
    height: 100%;
}

.map iframe {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

@keyframes fadeInOpacity {
    to {
        opacity: 1;
    }
}

@keyframes fadeInTransform {
    to {
        transform: translateX(0);
    }
}

