/*quick hack to hide signin*/
a[href="Signin.html"] {
    display: none;
}

* {
    margin: 0;
    padding: 0;

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;

    font-style: normal;

    font-variant: normal;
    text-transform: none;

    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;

    box-sizing: border-box;

    -webkit-tap-highlight-color: transparent;
}



body {
    height: 100%;
    font-family: "Inter", sans-serif;
    background-color: #FFF3DC;
}

/* page layout for footer */
#page-container {
    position: relative;
    min-height: 100vh;
}

/* So that footer does not move up */
#content-wrap {
    padding-bottom: 2em;
}

/* Style the top navigation bar */
.topbar {
    margin-top: 0em;
    margin-bottom: 0em;
    vertical-align: center;
    overflow: hidden;
    width: 100%;
    height: auto;
    transition: top 0.1 sec;
    z-index: 100;
    display: inline-block;
}


/* Adding logo to Header*/
.logo img {
    display: inline-block;
    width: 3em;
    height: auto;
    margin-bottom: 0em;
    margin-left: 1em;
    margin-top: 0.5em;
    z-index: 100;
}

.disableSelection {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}


.main {
    width: 70%;
    height: auto;
    margin-top: 5em;
    margin-bottom: 2em;
    margin-left: 15%;
    margin-right: 15%;
    padding: 0.6em 1em 0.6em 1em;
}

.main h1 {
    text-align: center;
    font-size: 3em;
    font-weight: 800;
    color: black;
    margin-bottom: 2em;
}

.main h2 {
    font-size: 1.5em;
    font-weight: 600;
    color: black;
    margin-top: 2em;
}

.main h3 {
    font-size: 1.2em;
    font-weight: 400;
    color: black;
    margin-top: 1em;

}

.main p {
    font-size: 1.2em;
    color: black;
    padding: 0.25em 0em 0.25em 0em;
    font-weight: 300;
    text-align: justify;

}

.email {
    font-family: "Inter", sans-serif;
    font-size: 1.2em;
    font-weight: 300;
}

div.email>span:nth-child(2) {
    display: none;
}

div.email>span:nth-child(4) {
    display: none;
}

div.email>span:nth-child(6) {
    display: none;
}


/* Create three equal columns that floats next to each other */
.footer {
    background-color: transparent;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3.5em;
    display: block;
    justify-content: center;
}

.copyRighted {
    background-color: transparent;
    padding: 0em 0em;
    width: 100%;
    height: 1.5em;
    text-align: center;
    margin-top: 0em;
    margin-bottom: 0em;
}

.copyRighted a {
    text-decoration: none;
    font-size: 0.75em;
    font-weight: 300;
    color: rgb(255, 255, 255, 0.5);
    padding: 0.1em 0.6em;
    text-align: center;
    margin-bottom: 0em;
    color: gray;
}

.footerElements {
    background-color: transparent;
    padding: 0em 0em;
    width: 100%;
    height: 1.5em;
    text-align: center;
    margin-top: 0em;
    margin-bottom: 0em;
}

.footerElements p {
    font-size: 1em;
    color: rgba(255, 149, 0, 1);
    padding: 0.1em 0.5em;
    display: inline;
    margin-bottom: 0em;
}

.footerElements a {
    text-decoration: none;
    font-size: 0.75em;
    font-weight: 400;
    color: black;
    padding: 0.1em 0.6em;
    text-align: center;
    margin-bottom: 0em;
}


/* Tablet Styles */
@media only screen and (max-width: 699px) {
    .logo img {
        margin-left: 0.5em;
        margin-top: 0.5em;
    }

    body {
        float: none;
        width: 100%;
    }

    .main {
        width: 96%;
        margin-left: 2%;
        margin-right: 2%;
    }

    .main h1 {
        font-size: 2.5em;
    }

    .main h2 {
        font-size: 1.4em;
    }

    .main h3 {
        font-size: 1.1em;
    }

    .main p {
        font-size: 0.9em;
    }

    .email {
        font-size: 0.9em;
    }

    .footer {
        width: 100%;
        display: block;
        justify-content: center;
        /*height: auto;*/
        height: 3em;
    }

    .footerElements {
        width: 100%;
        font-size: 1em;
    }

    .copyRighted {
        width: 100%;
        text-align: center;
        font-size: 1em;
    }
}

@media only screen and (max-width: 399px) {
    .main h1 {
        font-size: 2em;
    }
    
    .footerElements {
        font-size: 1em;
    }

    .copyRighted {
        font-size: 0.9em;
    }
}

@media only screen and (max-width: 349px) {
    .footerElements {
        font-size: 0.8em;
    }

    .copyRighted {
        font-size: 0.9em;
    }
}