/* ========================================
   MINTZ TEACHING SITE
   Main stylesheet
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@800&display=swap');
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    overflow: hidden;
}

.site-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.sidebar {
    width: 250px;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
   background-color: rgb(134, 147, 151);
    box-shadow: 8px 0 4px rgba(0, 0, 0, 0.7);
}
/* ========================================
   LOGO
   ======================================== */

.logo-container {
    width: 100%;
}

.logo-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navigation {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
   align-items: center;
    gap: 24px;
}

.navigation a {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
    flex: 1;
    height: 100vh;
    overflow: auto;
    background-color: rgb(245, 245, 245);
    padding-left: 80px;
}

/* ========================================
   HOMEPAGE
   ======================================== */

.homepage {
    min-height: 100%;
}
.homepage img {
    max-width: 50%;
    height: auto;
}

.homepage iframe {
    margin-left: 40px;
}

