html {
    font-size: 1.125rem;
    font-family: sans-serif;
    background-color: #001489;
    color: white;
}

a {
    color: white;
}

.logo-page { 
    align-items: center; 
    justify-content: center; 
    flex-direction: column; 
    display: flex; 
    width: 100%; 
    height: 100vh; 
    overflow: hidden;
} 

body {
    width: 100%; 
    overflow-x: hidden;
    margin-top: 0px;
}

h1, h2, h3 {
    color: #e10098;
    text-align: center;
}

.row {
    flex-direction: row; 
    display: flex; 
    justify-content: flex-start;
}

.left {
    width: 2em;
    font-size: xxx-large;
    font-weight: bolder;
    flex-shrink: 0;
}

.full-screen {
    width: 100%; 
    height: 100vh; 
}

.main-container {
    width: 100%;
    display: flex;
    flex-direction: row;
}

@media (orientation: landscape) {
    .left-col {
        order: -1;
        flex: 10;
        display: flex;
        flex-direction: column;
        justify-content: center; 
    }
    .right-col {
        order: 1;
        flex: 10;
        display: flex;
        flex-direction: column;
        justify-content: center; 
    }
    .fill-screen {
        height: 40%;
    }
    .menu {
        height: 20vh;
    }
    .menu-image {
        height: 50%;
    }    
    .placeholder {
        width: 100%;
        height: 20vh;
    }
}
@media (orientation: portrait) {
    .left-col {
        order: -1;
        flex: 2;
        display: flex;
        flex-direction: column;
        justify-content: center; 
    }
    .right-col {
        order: 1;
        flex: 2;
        display: flex;
        flex-direction: column;
        justify-content: center; 
    }
    .fill-screen {
        width: 40%;
    }
    .menu {
        height: 10vh;
    }
    .menu-image {
        height: 50%;
    }    
    .placeholder {
        width: 100%;
        height: 10vh;
    }
}

.center-col {
    flex: 40;
    display: flex;
    flex-direction: column;
}

.image {
    width: 80%;
}

.image-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
