:root {
    --body-font-size: 10vh;
    --bottom-font-size: 6.6vh;
    --head-font-color: #520450;
    --head-background-color: white;
    --body-font-color: white;
    --footer-background-color: white;
    --footer-font-color: black;
    --body-background-color: #520450;
}

html, body {
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
    cursor: none;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8vh;
    background-color: white;
    border: 1px solid white;
    font-size: var(--bottom-font-size);
    color: #4D566C;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

body::-webkit-scrollbar {
    display: none;
}

main {
    flex: 1;
    display: flex;
}

.left {
    flex: 4.5;
    box-sizing: border-box;
    display: flex;
}

.right {
    flex: 5.5;
    box-sizing: border-box;
    background-color: var(--body-background-color);
}

.image-container {
    flex: 1;
    width: 100%;
    height: 92%;
}

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

.logo {
    max-width: 32%;
    max-height: 12%;
}

.logoContainer {
    padding-top: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    width: 100%;
}

#userTable tr:first-of-type td:nth-child(1),
#userTable tr:first-of-type td:nth-child(2) {
    border-top: none !important;
}

td {
    text-align: left;
    font-size: var(--body-font-size);
    border-top: 1px solid white;
    text-align: center;
}

tbody tr {
    height: 16vh;
    font-weight: bolder;
    color: var(--body-font-color);
}

header {
    display: flex;
    height: 8%;
    color: var(--head-font-color);
    align-items: center;
    padding: 0 20px;
    font-size: 6vh;
    font-weight: bold;
}


.cell-30 {
    width: 20%;
    align-content: center;
}

.cell-35 {
    width: 28%;
    align-content: center;
}

.cell-40 {
    width: 46%;
}

#slideshow {
    transition: opacity 1.5s ease-in-out;
    opacity: 1;
}

.small-text {
    font-size: 5vh !important;
}

.smaller-text {
    font-size: 10vh !important;
}

.popup {
    background-color: #333;
    z-index: 1000;
    width: 60%;
    height: 84%;
    font-size: 1vh;
    position: absolute;
}

.greenRow, .whiteRow {
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.greenRow {
    background-color: var(--body-background-color);
    color: var(--body-font-color);
    height: 17%;
    font-size: 8vh;
}

.whiteRow {
    background-color: white;
    color:var(--head-font-color);
    height: 33%;
    font-size: 17vh;
}

.popup {
    display: none;
    opacity: 1;
    transition: opacity 1s ease;
}

    .popup.fade-out {
        opacity: 0;
    }
