﻿
a {
    color: black;
    text-decoration: none; /* no underline */
}

    a:hover {
        color: black;
        
        text-decoration: none;
        cursor: pointer;
    }

.MainContainer {
    position: absolute;
    background-color: #FEF8E9;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.ImageHeaderContainer {
    height: 25%;
    width: 100%;
    
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}
.headerImage {
    height: 47%;
    max-height: 59px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.Part1Container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9%;
    width: 100%;
}
.Part2Container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9%;
    width: 100%;
}
.Part1 {
    background-color: #E5173D;
    display: flex;
    text-align: center;
    height: 100%;
    color: white;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.Part2 {
    background-color: #E5173D;
    display: flex;
    text-align: center;
    height: 100%;
    color: white;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.InroImage {
    width: 24%;
    max-width: 142px;
}
.InroI {
    height: 20%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    font-size: 24px;
    font-family: Interstate-Regular;
}

.footerSpace{
    height:20%;

}
.AccessHere {
    
    height: 30%;
    width: 100%;
    background-color: #107CDE;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 33px;
}
.IconText {
    width: 200px;
    text-align: center;
}

@media screen and ( orientation:portrait ) {
    .Landscape {
        display: none;
    }
}


@media screen and ( orientation:landscape ) {
    .Landscape {
       
        position: absolute;
        top: 0;
        bottom: 0vh;
        left: 0;
        right: 0;
        z-index: 5;
        background-color: #E5173D;
        color: white;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 5vw;
    }

    .MainContainer {
        display: none!important;
    }
}