@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;600&family=Rubik:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@700&display=swap');

body {
	display: flex;
	background-color: #032e2b;
    background-image: url(pxl_star.gif);
    background-repeat: repeat;
    background-size: 5%;
    background-attachment: fixed;
	padding: 0;
	margin: 0;
	color: white;
	font-family: "Montserrat Alternates", sans-serif;
}

h1 {
	font-family: "Josefin Slab";
	font-size: 3em;
    margin: 0;
}
h2 {
	font-family: "Josefin Slab";
	font-size: 1.8em;
}

/* side buttons */
h3 {
	font-family: "Rubik", sans-serif;
	font-size: 1.2em;
    margin: 10px;
}
/* this is for the arrow down */
h4 {
	font-family: "Josefin Slab";
	font-size: 2em;
    margin: 0;
}
p {
	font-size: 1.1em;
	font-family: "Rubik", sans-serif;
    margin: 17px;
}



.everything{
    display: grid;
    grid-template-columns: 15vw 2vw 81vw 2vw;
}



.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    align-self: flex-start;
    display: grid;
    grid-template-columns: auto auto;
    background-color: #ff1098;
}
.sideContent {
    display: flex;
    flex-direction: column;
    background-color: #39c5bb;
    text-wrap: wrap;
    align-items: center;
    width: 15vw;
    text-align: center;
}
.sideContent img {
    margin-left: 10px;
    width: 14.2vw;
    height: max-content;
}
.waveBorder {
    position: sticky;
    top: 0;
    margin: 0;
    align-self: flex-start;
    display: flex;
    background-image: url("wavy bar.svg");
    background-repeat: repeat-y;
    height: 100vh;
}




.content {
    display: grid;
    grid-template-rows: 17.5vh auto 17.5vh auto;
    width: 81vw;
}

.emptyBox {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.featured {
    display: grid;
    grid-template-columns: 45vw 33vw;
    position: relative;
    background: #001715;
    margin: 2vh;
    padding: 1.4vh;
    row-gap: 2.8vh;
    column-gap: 2.8vh;
    max-width: 77vw;
    height: 56vh;
    align-items: center;
    border-radius: 50px;
    border: 3px solid #39c5bb;
}
.featMediaContainer {
    display: flex;
    flex-direction: column;
}
.featMediaContainer img {
    background: pink;
    max-height: 56vh;
    max-width: 45vw;
}
.featMediaContainer iframe {
    background: pink;
    aspect-ratio: 16/9;
    border: 3px solid #573dff;
    border-radius: 20px;
}
.featMediaText {
    background: #3209B2;
    width: 27vw;
    text-wrap: wrap;
    align-items: left;
    text-align: left;
    color: #9feee8;
    padding: 20px;
    border-radius: 20px;
    border: 3px solid #573dff;
}



/* replace percents with pixels thx */
.galleryStuff{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 2vh;
    padding: 1.4vh;
    row-gap: 2.8vh;
    column-gap: 2.8vh;
    max-width: 100%;
}
.galleryContent {
    background: indigo;
    padding: 2.8vh;
    border-radius: 50px;
    border: thick dashed #39c5bb;
}
.galleryMedia img {
    max-width: 100%;
}
.galleryText {
    width: 100%;
    text-wrap: wrap;
    align-items: center;
    text-align: center;
}



/* NAME STUFF */
.nameplate img {
    transform: translateY(-20px);
}
.nameplate img:hover {
    animation-name: nameplateAnim;
    animation-duration: .7s;
}
@keyframes nameplateAnim {
    0% {transform: translateY(-20px)}
    40% {transform: translateY(-1px)}
    70%{transform: translateY(-30px)}
    100% {transform: translateY(-20px)}
}

/* arrow thing */
.arrowDown h4 {
    transform: translateY(0px);
}
.arrowDown h4:hover {
    animation-name: arrowDownAnim;
    animation-duration: .7s;
}
@keyframes arrowDownAnim {
    0% {transform: translateY(0px)}
    40% {transform: translateY(-10px)}
    70%{transform: translateY(10px)}
    100% {transform: translateY(0px)}
}



.navButtons {
    display: flex;
    flex-direction: column;
    width: 15vw;
}

.sideHomeButton{
    font-family: "Josefin Slab";
	font-size: 2.5em;
    color:#9feee8;
    margin-top: 7px;
    margin-bottom: 10px;
    margin-left: 20px;
    font-weight: 500;
    align-items: center;
    padding-top: 5px;
    justify-content: center;
    display: flex;
    width: 12.5vw;
    height: 4vh;
    border: 4px solid #573DFF;
    border-top-right-radius:42px;
    border-top-left-radius:42px;
    border-bottom-left-radius:42px;
    border-bottom-right-radius: 42px;
    box-shadow: 3px 3px 0px -1px #ff1098;
    background: #3209B2;
}
.sideHomeButton:hover {
    background: #573DFF;
}

.sideBigButton {
    font-family: "Josefin Slab";
	font-size: 1.6em;
    color:#9feee8;
    margin-top: 27px;
    margin-bottom: 20px;
    margin-left: 20px;
    font-weight: 500;
    align-items: center;
    padding-top: 5px;
    padding-left: 17px;
    display: flex;
    width: 11vw;
    height: 4vh;
    border: 4px solid #573DFF;
    border-bottom-right-radius: 10px;
    border-top-right-radius:42px;
    border-top-left-radius:42px;
    border-bottom-left-radius:42px;
    box-shadow: 3px 3px 0px -1px #ff1098;
    background: #3209B2;
}
.sideBigButton:hover {
    background: #573DFF;
}

.sideButton {
    font-family: "Rubik", sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    text-align: right;
    justify-content: right;
    align-items: center;
    color:#9feee8;
    padding-right: 17px;
    display: flex;
    margin-left: 4vw;
    margin-bottom: 1.2vh;
    width: 10vw;
    height: 5vh;
    border: 4px solid #573DFF;
    border-top-right-radius:42px;
    border-bottom-left-radius:42px;
    border-bottom-right-radius:42px;
    border-top-left-radius: 10px;
    box-shadow: 2px 3px 0px -1px #ff1098;
    background: #3209B2;
}
.sideButton:hover {
    background: #573DFF;
}


.sideMiscButton{
    font-family: "Josefin Slab";
	font-size: 1.6em;
    color:#9feee8;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    font-weight: 500;
    align-items: center;
    padding-top: 5px;
    padding-left: 17px;
    display: flex;
    width: 11vw;
    height: 4vh;
    border: 4px solid #573DFF;
    border-top-right-radius:42px;
    border-top-left-radius:42px;
    border-bottom-left-radius:42px;
    border-bottom-right-radius: 42px;
    box-shadow: 3px 3px 0px -1px #ff1098;
    background: #3209B2;
}
.sideMiscButton:hover {
    background: #573DFF;
}