body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
body::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}
.welcomeContainer {
    height: 100%;
    width: 100%;
    position: absolute;
    border: solid 0;
}
.topbar {
    background-color: #E8651A;
    overflow-y: hidden;
    overflow-x: scroll;
    min-height: 10%;
    max-height: 20%;
}
.topbar a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
.footerLocation {
    position: fixed;
    overflow: hidden;
    bottom: 0;
    width: 90%;
    left: 20%;
}
.footerLocation a {
    float: left;
    display: block;
    text-align: center;
    padding: 14px 3px;
    text-decoration: none;
    font-size: 17px;
}
.footerHref {
    color: #1C2063;
    text-align: center;
    display: inline-block;
}
.viewcontainer {
    min-height: 80%;
    max-height: 90%;
    top: 8%;
    width: 100%;
    position: absolute;
    border: solid 0;
    background-color: transparent;
}

.homeContainer {
    height: 100%;
    width: 100%;
    position: absolute;
    border: solid 0;
    background-color: transparent;
}
.homeContainerText {
    text-align: center;
    font-size: 1.2rem;
    color: #3F6399;
    height: 80%;
    width: 100%;
    position: relative;
}
.homeContainerText p {
    padding-left: 25%;
    padding-right: 25%;
    text-align: left;
}
.homeContainerBtn {
    height: 10%;
    width: 100%;
    border: solid 0px;
    background-color: transparent;
    position: absolute;
}
.logoHolder {
    height: 20%;
    width: auto;
}
.homeContainerBtn button {
    background-color: #E8651A;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    position: absolute;
    left: 30%;
    right: 30%;

}
.homeContainerBtn button:hover {
    color: orange;
}


@media only screen and (max-width: 600px) {
    .footerLocation {
        display: none;
    }
    .footerLocation a {
        display: none;
    }
    .footerHref {
        display: none;
    }
    .homeContainer {
        height: 100%;
        width: 100%;
        position: absolute;
        border: solid 0;
        background-color: transparent;
        top: 10%;
    }
    .homeContainerText {
        text-align: center;
        font-size: 1.2rem;
        color: #3F6399;
        overflow-y: scroll;
        height: 80%;
        width: 100%;
        position: relative;
    }
    .homeContainerText p {
        text-align: left;
        padding-left: 5%;
        padding-right: 5%;
    }
    .homeContainerBtn {
        bottom: 0;
        margin-left: 0;
        margin-right: 0;
        position: fixed;
    }
    .homeContainerBtn button {
        left: 5%;
        height: 80%;
        right: 5%;
    }

}
