@charset "utf-8";
/* CSS Document */

* {
	margin: 0px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

body {
	width: 100%;
    background: #2A7B9B;
    background: linear-gradient(-30deg,rgba(42, 123, 155, 1) 0%, rgb(245, 145, 213) 50%, rgba(255, 241, 135, 1) 100%);
	font-family:'Inter Tight', 'Segoe UI', 'Tahoma', 'Geneva', 'Verdana', sans-serif;
    overflow: hidden;
}

#header {
    position: relative;
    float: left;
    width: 23%;
    min-width: 250px;
    height: 100vh;
    margin: 0;
    overflow-y: scroll;
    scrollbar-color: transparent;
}

#logo {
    position: relative;
    width: 100%;
    height: 30vh;
    max-height: 220px;
    min-height: 140px;
    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;
    mix-blend-mode: color-dodge;
}

#navOpen, #navClose {
    display: none;
}

#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: auto;
    height: auto;
    margin-bottom: 2vh;
    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;
    min-height: 80px;
    margin-left: 5%;
    margin-bottom: 20px;
    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: 75vw;
    height: 100vh;
    overflow-y: scroll;
    scrollbar-color: transparent;
}

#item1 {
    grid-area: i1;
}

#item2 {
    grid-area: i2;
}

#item3 {
    grid-area: i3;
}

#item4 {
    grid-area: i4;
}

#item5 {
    grid-area: i5;
}

#grid {
    position: relative;
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "i1 i1 i4" "i1 i1 i4" "i1 i1 i5" "i2 i3 i5" "i2 i3 i5";
    width: 97%;
    height: 85vh;
    min-height: 500px;
    margin-left: 2%;
    margin-top: 4vh;
}

.mainItem {
    width: auto;
    height: auto;
    margin: 10px;
    border-radius: 25px;
    border: 3px solid black;
    transition-duration: 0.4s;
}

.mainItem:hover {
    margin: 0px;
}

.mainItem img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: left top;
    border-radius: 21px;
}

.mainItem h2 {
    position: relative;
    float: left;
    width: auto;
    height: auto;
    margin-left: 40px;
    margin-top: -60px;
    font-size: 32px;
    font-weight: bold;
    color: white;
}

#footer {
    position: relative;
    width: 100%;
    height: 80px;
    color: rgba(255, 255, 255, 0.6);
}

#footer h4 {
    position: absolute;
    right: 20px;
    bottom: 20px;
}