@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&family=Lora:ital,wght@0,400;0,700;1,400&family=Prata&display=swap');

body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	color: #380d5f;
	overflow-x: hidden;
}

h4 {
	font-family: 'Prata', serif;
    font-size: 2rem;
}

.spacer-full-page {
	height: 100vh;
}

.spacer-sm {
	height: 100px;
}
.spacer-md {
	height: 120px;
}
.threejs-content {
	position: absolute;
	width: 100%;
	height: 100vh;
	display: grid;
	place-items: center;
}

.threejs-content .text {
	position: absolute;
	z-index: 100;
	color: #380d5f;
}

.threejs-content .text h1 {
	font-size: 7rem;
	margin-bottom: 0;
	font-family: 'Prata', serif;
}

.threejs-content .text h3 {
	font-size: 2rem;
	text-align: center;
	font-family: 'Prata', serif;
}

.top-bar {
	position: absolute;
	top: 0;
}

.top-bar .row .col {
	height: 60px;
	display: grid;
	place-content: center;
	font-weight: bold;
	font-size: 1.2rem;
	
}


#webgl-blob {
	background: #ffffff;
	position: relative;
	display: block;
	width: 100vw !important;
	height: 100vh !important;
}

@media only screen and (max-width: 656px) {
	.threejs-content .text h1 {
		font-size: 3rem;
		text-align: center;
	}

	.threejs-content .text h1, .content .text h3 {
		text-align: center;
	}
}


.square {
    position: relative;
    margin: 0 10px;
    max-width: 400px;
    max-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.square span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 400px;
    border-radius: 32% 58% 69% 43% / 48% 32% 59% 55%;
    background: #63D471;
    animation: animate 6s linear infinite;
}



.square span:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    animation: animate 4s linear infinite;
    background: #1155CC;
}


.square span:nth-child(3) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 31% 45% 74% 35% / 38% 56% 51% 87%;
    background: #6108B5;
    animation: animate2 10s linear infinite;
}


.content {
    position: relative;
    padding: 30px 50px;
    color: #fff;
    text-align: center;
    z-index: 1000;
    min-width: 400px;
    min-height: 400px;
    display: grid;
    place-content: center;
}


.content a {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    border: 2px solid #fff;
    padding: 6px 18px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    border-radius: 73% 27% 44% 56% / 49% 44% 56% 51%;
}


.profile-pic {
	width: 300px;
	height: 300px;
	position: absolute;
	border-radius: 100%;
	z-index: 10;
    display: grid;
    place-content: center;
}

.profile-pic img{
    width: 300px;
	height: 300px;
    border-radius: 100%;
    background-position: center;
}



@media only screen and (max-width: 1300px) {

    .content  {
        min-width: 350px;
        min-height: 350px;
    }

    .square {
        max-width: 350px;
        max-height: 350px;
    }
}


@media only screen and (max-width: 700px) {

    h4 {
        font-size: 1.5rem;
    }

    .profile-pic img{
        width: 210px;
        height: 210px;
     }

    .content  {
        min-width: 270px;
        min-height: 270px;
        padding: 0;
    }

    .square {
        max-width: 270px;
        max-height: 270px;
    }
}


@media only screen and (max-width: 280px) {

    .profile-pic img{
        width: 150px;
        height: 150px;
     }

    .content  {
        min-width: 220px;
        min-height: 220px;
    }

    .square {
        max-width: 220px;
        max-height: 220px;
    }
}

.content a:hover {
    background: white;
    color: #333;
}

.gs_reveal {
	display: grid;
	place-items: center;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate2 {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}


.credit {
    text-align: center;
    background-color: white;
    -webkit-box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
    padding: 40px;
    font-family: 'Mulish', sans-serif;
}

.credit h3 {
    margin-top: 10px;
}

.credit h3, .credit h5 {
    font-family: 'Prata', serif;
    font-weight: 600;
    text-transform: lowercase;

}

.credit img{
    width: 150px;
    height: auto;
    border-radius: 100%;
}

.credit div {
    text-transform: lowercase;
    font-family: 'Work Sans', sans-serif;
}