@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', serif;
    max-width: 100%;
}

.page-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    width: 100px;
    height: auto;
}

main {
    padding: 0 30px;
}

nav {
    display: flex;
    width: 100vw;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px 0;
    background-color: #fff5f3;
}

nav img {
    width: 60px;
    margin-left: 30px;
}

nav .button {
    margin-right: 30px;
}

h1 {
    z-index: -1;
}

h2 {
    font-size: 35px;
    margin: 0;
}

h3 {
    margin: 0;
    padding: 0;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: calc(100vh - 15vh);
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info:nth-child(1) {
    margin-top: 20px;
}

#date {
    text-align: center;
    color: black;
    font-size: 15px;
    z-index: -1;
}

.clock {
    color: black;
    font-size: 20px;
    z-index: -1;
    font-size: 15px;
}

#icon {
    width: 100px;
    z-index: -1;
}

#courses {
    width: 100%;
}

.sketch {
    position: absolute;
    top: 0;
}

.projects-wrapper {
    background-color: #fff5f3;
    text-align: center;
    padding: 25px 0;
}

.project {
    text-align: center;
    padding: 25px 35px;
}

.project img {
    width: 50%;
}

.login-screen {
    height: calc(100vh - 15vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.admin-images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;
}

.admin-images img {
    width: calc(25vw - 100px);
}

.box {
    margin: 25px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 2px 2px 15px;
}

.box h2 {
    font-size: 15px;
}

.button {
    border: 2px solid black;
    color: black;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    border-radius: 8px;
}

.white-button {
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #fff5f3;
}

@media only screen and (max-width: 780px) {

    h1 {
        font-size: 30px;
    }

    .project img {
        width: 100%;
    }

    .admin-images {
        justify-content: center;
    }

    .admin-images img {
        width: 60vw;
    }
}

.dishes {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: 32px;
}

.dish {
    font-size: 36px;
    margin-bottom: 32px;
}

.projects {
    padding-bottom: 64px;
}

.projects-title {
    margin-bottom: 24px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media only screen and (max-width: 980px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

.project-card {
    position: relative;
    background-color: #1b455e;
    border-radius: 8px;
}

.project-card-image-container {
    position: relative;
    border-radius: 8px 8px 0 0;
}

.project-card-image-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.project-card-tag {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: #1b455e;
    color: #FFF;
    padding: 6px 8px;
    border-radius: 8px;
    z-index: 2;
    font-size: 12px;
    font-weight: 700;
}

.project-card-text-container {
    padding: 16px 32px;
    color: white;
}

.project-card-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}