.outside_root {
    display: grid;
    grid-template-columns: 1fr 8fr 1fr;
    grid-template-rows: 100vh;
}

.outside_root .side_bar {
    position: relative;
    background-image: url(./Assets/Logo/stripes.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.outside_root .push_left {
    background-position: left;
}

.outside_root .push_right {
    background-position: right;
}

.outside_root .main_container {
    padding: clamp(6px, 8vmin, 40px);
}

@media only screen and (orientation: portrait) {
    .outside_root {
        grid-template-rows: 5fr 90fr 5fr;
        grid-template-columns: 100vw;
    }

    .outside_root .side_bar {
        position: relative;
        background-image: url(./Assets/Logo/horiz_stripes.svg);
        background-size: 100% auto;
        background-repeat: no-repeat;
    }

    .outside_root .main_container {
        margin-top: 0vh;
        padding: 0px clamp(3px, 7vmin, 48px);
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .outside_root .push_left {
        background-position: top;
    }
    
    .outside_root .push_right {
        background-position: bottom;
    }
}

.outside_root h1 {
    color: var(--red);
    font-size: clamp(24px, 15vh, 144px);
}

.outside_root .animated_button {
    font-weight: bold;
}

.outside_root .action_button {
    margin-top: 2em;
    font-weight: bold;
}

.outside_root .top_button {
    width: 100%;
}

.outside_root .animated_button:hover {
    background-color: var(--orange);
    color: var(--grayest);
}

.outside_root .unselected_button:hover {
    background-color: var(--grayest);
    color: var(--white);
}

.outside_root .visibile {
    opacity: 1;
    pointer-events: auto;
}

.outside_root .hidden {
    opacity: 0;
    pointer-events: none;
}

.outside_root #outer_form_container {
    padding: 4em;
    border: 3px solid var(--orange); 
    position: relative; 
    height: max(25em, 40vmin);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.outside_root .main_logo {
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-bottom: 4em;
}

.outside_root .main_logo img {
    width: clamp(250px, 50vmin, 750px);
}

