﻿body {
    font-family: Gotham Narrow SSm A,Gotham Narrow SSm B,Rubik,Lato,Lucida Grande,Lucida Sans Unicode,Tahoma,Sans-Serif;
    background: rgb(80, 80, 80);
    display: grid;
    grid-template-columns: repeat(20, 1fr);
}

img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px rgba(51, 51, 51, 0.7);
}

.title {
    font-size: clamp(2rem,calc(2rem + 1.2vw),3rem);
    font-weight: 700;
    margin: 7px 0;
    text-align: center;
    color: white;
    grid-column: 2 / 20;
}

.menu-wrap {
    grid-column: 1 / 21;
    display: grid;
    margin-bottom: 20px;
}

.menu {
    justify-self: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    width: 40%;
    height: 30px;
}

.tabs {
    color: white;
    background-color: #007cba;
    font-size: 24px;
    border-radius: 8px;
    border: hidden;
    outline: none;
    padding-bottom: 2px;
}

    .tabs:hover {
        transition: 0.2s;
        cursor: pointer;
        background-color: #6ba1ff;
        outline: none;
    }

#staff_tab {
    display: none;
}

#students_tab {
    display: none;
}

.active {
    background-color: #6ba1ff;
}

.content-wrap {
    grid-column: 2 / 20;
}

.text-top, .text-side {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    font-family: Sentinel SSm A,Sentinel SSm B,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    grid-row-gap: 50px;
    align-items: center;
}

.content-text {
    grid-column: 1 / 3;
}

.text {
    font-size: 24px;
}

@media only screen and (max-width : 1024px) {
    img {
        max-width: 400px;
    }
    
    .text-top {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .text-top .content-text {
        grid-column: 1 / 2;
    }
}

@media only screen and (max-width : 768px) {
    .text-side {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .menu {
        width: 60%;
    }
}

@media only screen and (max-width : 480px) {
    img {
        max-width: 100%;
    }
}