@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: 200px;
    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;
}



.entire-page {
    height: 100vh;
    width: 100vw;
    background-image: url('../assets/pet-background.png');
}


.page-header .title {
    font-size: 1.2em;
    font-weight: 800;
}


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;
    

}

.web-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'DynaPuff', cursive;
    font-size: 80px;
    height: 200px;
    color: #97C4B8;
    text-align: center;
    text-shadow: 4px 4px 2px rgba(150, 150, 150, 1);
}

#pawfile-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(61deg, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    color: white;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 29px 8px rgba(0,0,0,0.75);
    border: 3px solid white;
}

.pawfile-avatar {
  color: transparent;
}
.pawfile-avatar::-webkit-file-upload-button {
  visibility: hidden;
}
.pawfile-avatar::before {
  content: 'Choose your Avatar';
  color: black;
  display: inline-block;
  background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}

.pawfile-avatar:hover::before {
  border-color: black;
}

.pawfile-avatar:active {
  outline: 0;
}

.pawfile-avatar:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9); 
}

.update-pawfile {
    cursor: pointer;
}

.default-avatar {
  width: 75px;
    height: 75px;
    border-radius: 100%;
    object-fit: cover;
}

textarea::placeholder {
  display: flex;
}

.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;
	
}
.content-text {
	text-align: center;
}

.content-text h2 {
	background: #97C4B8;
	display: inline-block;
	padding: 15px 35px;
	text-transform: uppercase;
	font-size: 50px;
	color: #fff;
}
.content-text h3 {
	text-transform: uppercase;
	font-size: 45px;
	margin: 0;
	letter-spacing: 3px;
}