@charset "utf-8";
/* CSS Document */

* {
	margin: 0px;
}

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-y: visible;
    overflow-x: hidden;
}

#header {
	position: relative;
    width: 100%;
    height: 150px;
}

#logo {
    position: relative;
    width: 40%;
    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: 3;
}

#logo img {
    position: relative;
    display: block;
    max-height: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    mix-blend-mode: color-dodge;
}

#navOpen {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 40px;
    right: 40px;
}

#navClose {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 40px;
    right: 40px;
    z-index: 5;
}

#navOpen i {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    text-align: center;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.6);
}

#navClose i {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    text-align: center;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.6);
}

#navbar {
    position: fixed;
    width: 80%;
    height: 110vh;
    top: 0;
    right: -85vw;
    background-color: white;
    z-index: 4;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav {
    position: relative;
    float: left;
    width: 80%;
    height: auto;
    margin: 5px;
}

#podcast {
    padding-top: 60px;
}

.nav a {
    position: relative;
    float: left;
    width: auto;
    height: auto;
    margin-bottom: 2vh;
    font-size: 28px;
    text-decoration: underline;
    color: rgba(0, 0, 0, 0.6);
}

.nav i {
    width: 80px;
    height: auto;
    text-align: center;
}

#links {
    display: none;
}

.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: 100%;
    height: 1650px;
    z-index: 2;
}

#grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.mainItem {
    position: relative;
    float: left;
    width: 90%;
    height: 300px;
    margin-left: 5%;
    margin-top: 20px;
}

.mainItem img {
    position: relative;
    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;
    float: left;
    width: 100%;
    height: 80px;
    color: rgba(255, 255, 255, 0.6);
    background-color: black;
}

#footer h4 {
    position: absolute;
    width: 100%;
    top: 20px;
    text-align: center;
}