@charset "utf-8";
/* CSS Document */

* {
	margin: 0px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

body {
	width: 100%;
	background-color: white;
	font-family: Gill Sans, Gill Sans MT, Myriad Pro, DejaVu Sans Condensed, Helvetica, Arial," sans-serif";
    overflow: hidden;
}

#header {
    position: relative;
    float: left;
    width: 23%;
    min-width: 250px;
    height: 99vh;
    margin: 0;
    overflow-y: scroll;
    scrollbar-color: transparent;
}

#logo {
    position: relative;
    width: 100%;
    height: 30vh;
    max-height: 220px;
    left: 0;
    top: 0;
}

#logo a {
    position: absolute;
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    z-index: 10;
}

#logo img {
    position: relative;
    display: block;
    max-height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#navbar {
    position: relative;
    width: 90%;
    height: 50vh;
    min-height: 300px;
    margin-left: 5%;
    margin-top: 3vh;
}

.nav {
    position: relative;
    float: left;
    width: 90%;
    height: auto;
}

.nav a {
    position: relative;
    float: left;
    width: 100%;
    height: auto;
    margin-bottom: 2vh;
    font-family:'Inter Tight', 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', sans-serif;
    font-size: 32px;
    text-decoration: underline;
    color: rgba(0, 0, 0, 0.6);
}

.nav i {
    width: 80px;
    height: auto;
    text-align: center;
}

#links {
    position: relative;
    width: 90%;
    height: 15vh;
    margin-left: 5%;
    border-top: 4px solid rgba(0, 0, 0, 0.6);
    font-size: 32px;
}

.link {
    position: relative;
    display: block;
    float: left;
    width: 20%;
    min-width: 36px;
    height: auto;
    margin-top: 25px;
    text-align: center;
}

.link a {
    width: auto;
    height: auto;
}

/**********************/

#main {
    position: relative;
    float: left;
    width: 70%;
    max-width: calc(100vw - 400px);
    height: 88vh;
    margin-left: 4%;
    margin-top: 5vh;
    background-color: blue;
}

#main img {
    position: relative;
    float: left;
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 20%;
}

#main div {
    position: relative;
    float: left;
    width: 40%;
    height: 90%;
    padding: 5%;
    text-align: center;
}

#main p {
    padding-top: 30px;
}

/* #footer {
    position: relative;
    width: 100%;
    height: 200px;
} */