@import url('https://fonts.googleapis.com/css2?family=DynaPuff&family=Roboto&family=The+Nautigal:wght@700&display=swap');


:root {
    --background: rgb(195, 161, 240);
    --header-background: white;
    --footer-background: rgb(243, 242, 242);
    --text-color: rgb(7, 5, 68);
    --label-color: rgb(75, 102, 98);
    --placeholder-color: rgb(136, 136, 153);
    --offset-color: rgb(217, 236, 217);
    --action-color: rgb(77, 132, 252);
}

body {
    height: 100vh;
    font-family: 'Rubik', san-serif;
    background: rgb(238,174,202);
    background: linear-gradient(61deg, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.page-header {
    position: static;
    top: 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
    background-color: var(--header-background);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background: rgb(238,174,202);
    background: linear-gradient(61deg, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    font-family: 'Fascinate', cursive;
    font-family: 'Space Mono', monospace;
}

.page-header .title {
    font-size: 2rem;
    font-weight: 800;
}



main {
    padding: 20px;
}

footer {
    position: sticky;
    bottom: 0;
    padding: 7px 20px;
    font-size: 0.8em;
    display: flex;
    justify-content: flex-end;
    background-color: var(--footer-background);
}

.main-content {
    width: 100vw;
    height: 100vh;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(../assets/pet-background.PNG);
}



.creator-names {
    font-weight: bold;
    width: 80%;
    height: 70px; 
    margin: auto;
    display: flex;
    justify-content: space-around;
    font-size: 2rem;
    
}

.creator-images {
    width: 80%;
    height: 350px;
    display: flex;    
    justify-content: space-around;
    margin: auto;
}

.creator-img {
    box-shadow: 0px 0px 29px 8px rgba(0,0,0,0.75);
    width: 300px;
    height: 300px;
    border-radius: 10px;
}

.creator-title {
    color: black;
    font-family: 'DynaPuff', cursive;
    font-size: 4.5rem;
}

.charlie-info {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 300px;
}

.emily-info {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 300px;
}

.lawson-info {
    position: sticky;
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 300px;
}

.tanner-info {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 300px;
}

.zach-info {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 300px;
}

.creator-info {
    width: 80%;
    height: 600px;
    display: flex;    
    justify-content: space-around;
    margin: auto;
}

.linked-in {
    width: 40px;
    height: 40px;
    border-radius: 15px;
}

.git-hub {
    width: 40px;
    height: 40px;
    border-radius: 15px;
}

form {
    width: 100%;
    margin: auto;
    max-width: 500px;
    border: 1px solid;
    background: var(--footer-background);
    padding: 20px;
    border-radius: 10px;

    display: grid;
    gap: 20px;
    
}
form input,
form textarea,
form select,
form button {
    width: 100%;
    font-size: 1em;
    padding: 7px;
    border-radius:8px;
    
}

form textarea {
    font-family: 'Rubik';
    resize: vertical;
}

form button {
    cursor: pointer;
}

input#file-upload-button {
    cursor: pointer;
}


.entire-page {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.creator-name-tag {
    font-family: 'DynaPuff', cursive;
    font-weight: bold;
    font-size: 1.7rem;
}


.tanner-icons {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    color: #CCF3EE;
    background-color: black;
    margin: .5rem;
}

.lawson-icons {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    color:#a66db6;
    background-color: black;
    margin: .5rem;
}

.emily-icons {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    color:#F9CEEE;
    background-color: black;
    margin: .5rem;
}

.zach-icons {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    color: #F9F3EE;
    background-color: black;
    margin: .5rem;
}

.charlie-icons {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    color: #97C4B8;
    background-color: black;
    margin: .5rem;
}


.sideMenu {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background: #97C4B8;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
}

.sideMenu a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	color:#F9CEEE;
	display: block;
	transition: 0.3s;
	font-size: 18px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 900;
}
.sideMenu a i {
	padding-right: 15px;
}
.main-menu a:hover {
	color: #f1f1f1;
	background: #111;
}
.sideMenu .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}
#content-area {
	transition: margin-left .5s;
	padding: 16px;
}
.content-text {
	padding: 100px 180px;
	text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black; 
    font-family: 'DynaPuff', cursive;
}
.content-text h2 {
	background: #97C4B8;
	display: inline-block;
	padding: 15px 35px;
	text-transform: uppercase;
	font-size: 50px;
	color: #F9F3EE;
    text-shadow: 3px 5px 2px #474747;
    border-radius: 15px;
}
.content-text h3 {
	text-transform: uppercase;
	font-size: 45px;
	margin: 0;
	letter-spacing: 3px;
}

.content-text p {
    font-size: 35px;
    margin: 0;
    letter-spacing: 2px;
    color: #F9F3EE;
    text-shadow: 3px 5px 2px #474747;
}