/* Principles Styles */
.principles {
    min-width: 600px;
    height: calc(var(--height-header) * 10);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.principles .container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#principle1 {
    background-image: url(/img/missionwallpaper.jpg);
}

#principle2 {
    background-image: url(/img/visionwallpaper.jpg);
    background-position: bottom;
}

#principle3 {
    background-image: url(/img/valuewallpaper.jpg);
}

#principle4 {
    background-image: url(/img/behaviorwallpaper.jpg);
}

.principles .container .principle {
    position: absolute;
    width: 100vw;
    height: calc(var(--height-header) * 10);
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 2s;
    opacity: 0;
}

.principles .container .principle img {
    width: 300px;
    height: 300px;
}

.principles .container .principle .text {
    margin-left: 64px;
    width: 600px;
    min-height: 300px;
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    color: white;
}

.principles .container .principle .text label {
    font-size: calc(var(--font-size) * 2);
    font-weight: bold;
    font-style: italic;
}

/* Abstract Styles */
.abstract {
    width: 100vw;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.title {
    width: 100vw;
    height: var(--height-header);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(var(--font-size) * 1.25);
    font-weight: bold;
}

.abstract table {
    width: 80vw;
    margin-bottom: calc(var(--height-header) / 2);
    border-collapse: collapse;
    border: 1px solid gray;
}

.abstract table tr td {
    padding: 16px;
    text-align: justify;
    border: 1px solid gray;
}

.abstract table tr td:first-child {
    background-color: rgb(224, 255, 224);
}

/* Access Styles */
.access {
    display: flex;
    flex-flow: column;
}

.access .green {
    background-color: var(--color-green);
    color: white;
}

.access .textandmap {
    padding: 32px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.access .textandmap iframe {
    max-width: 500px;
    height: 300px;
}

/* Footer Styles */
footer {
    width: 100vw;
    height: var(--height-header);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-black);
    color: white;
}

/* Media Query */
@media screen and (max-width: 600px) {
    /* Principles Styles */
    .principles {
        min-width: initial;
        height: calc(100vh - var(--height-header)*2);
        width: 100vw;
    }

    .principles .container .principle {
        top: calc(var(--height-header)*2);
        left: 0;
        height: calc(100vh - var(--height-header)*2);
        padding: 0;
        flex-flow: column;
        background-position: center;
    }

    .principles .container .principle img {
        position: relative;
        margin-bottom: 32px;
        width: 30vw;
        height: 30vw;
    }

    .principles .container .principle .text {
        margin-left: initial;
        padding: 0 32px;
        width: 100vw;
        min-height: initial;
        height: fit-content;
        justify-content: space-evenly;
    }

    .principles .container .principle .text label {
        margin-bottom: 32px;
    }


    /* Access Styles */
    .access {
        display: flex;
        flex-flow: column;
    }

    .access .green {
        background-color: var(--color-green);
        color: white;
    }

    .access .textandmap {
        padding: 32px;
        display: flex;
        flex-flow: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .access .textandmap iframe {
        max-width: initial;
        margin-top: 32px;
        width: 80vw;
        height: 300px;
    }
}