@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

/* ROOT VARIABLES */
:root {
   	--bg-color: #ededed;

   	--text-color: #181719;
	--pink-color: #e2abff;
	--blue-color: #96d8ff;
	--purp-color: #9797ff;
}

html {
	background-color: var(--pink-color);

	font-family: 'Lexend', sans-serif;
	max-width: 960px;
	min-width: fit-content;

	display: block;
	margin: auto;
}

/******************/
/* HEADER SECTION */
/******************/
.header {
	display: block;
	width: 100%;
	overflow: hidden !important;
}

#header {
	display: block;
    margin-left: -32px;
}

#name {
	width: 96px;

	position: sticky;

	top: 20px;
	left: 0;
}

/****************/
/* MAIN CONTENT */
/****************/
body {
	overflow-x: hidden !important;
	display: block;
	width: 100%;
	
	margin: 0px auto;
	padding-top: 6px;
	padding-bottom: 0px;

	padding-left: 2em;
	padding-right: 2em;

	background-color: var(--bg-color);
}

a {
	text-decoration: none;
	font-weight: bold;
}

.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	list-style-position: inside;
}

h1, h2, h3, h4 { text-align: center; }
h1, h2 { font-family: 'Lobster Two', cursive; }

h2 > a {
	margin: 0px 12px;
	color: var(--pink-color);
}

h3 a {
	color: var(--pink-color);
}

h4 a { color: var(--purp-color); }
h4 > a { color: var(--blue-color); }
h4 > a:hover { 
	color: var(--purp-color); 
	text-decoration: underline 3px !important;
}

#container {
	display: block;
	width: 960px;
	position: relative;
	
	margin-top: 0;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
}

#content {
	display: block;
	width: 860px;
	height: auto;
	
	margin: 0px auto;
}

.nav {
	display: block;
	padding: 12px;
	padding-bottom: 6px;
}

.nav a {
	text-decoration:none;
	font-size: 36px;
	color: var(--text-color);
	font-weight: bold;
}

.nav a:hover {
	color: var(--pink-color);
	text-decoration: underline 4px;
}

div {
	margin: 12px;
}

p {
	color: var(--text-color);
	font-size: 18px;
	
	text-align: center;
}

p a {
	color: var(--pink-color);
}

#about {	
	display: block;
	margin: auto;
	position: absolute;
    width: 46.5%;
	
    padding: 10px;
    margin-top: 20px;
    margin-left: 45%;
	
	text-decoration:none;
	font-weight: bold;
}

#about h3 {
	font-size: 18px;
	color: var(--pink-color);
}

#about p {
	font-size: 16px;
	text-align: left;
	width: 92%;
	margin-left: 4%;
}

/*******************/
/* GALLERY SECTION */
/*******************/
div.gallery.portfolio > img {
	display: inline-flexbox;
	margin: 6px;

	height: 160px;
	width: auto;
}

div.gallery.portfolio.wide > img {
	height: auto;
	width: 270px;
}

div.gallery.portfolio > img:hover{
	transform: scale(1.1);
}

/****************/
/* CONTACT FORM */
/****************/
form {
    position: relative;
    width: 60%;
	margin-left: -4em;
}

input,
textarea,
.select-dropdown { 
    outline: none;
}

#inquiry {
	width: 20em;
}

.form {
    padding: 12px;
	padding-top: 12px;
}

.form input,
.form textarea {
    display: block;
    width: 96%;
    padding: 15px;
    margin-bottom: 10px;
	
    border: none;
    border-radius: 20px;
    background: #ffffff;
	resize: none;

	font-family: 'Roboto', sans-serif;
}

button {
	display: block;
	margin: auto;
	width: 60%;
    padding: 10px;
    margin-top: 20px;
	
	text-decoration:none;
	font-size: 24px;
	color: #ffffff;
	font-weight: bold;
	
    border-radius: 20px;
    border: none;
    background: var(--pink-color);
}

button:hover {
    background: var(--text-color);
}

.dropbtn {
  background-color: var(--pink-color);
  color: white;
  padding: 6px;
  font-size: 14px;
  border: none;
  cursor: pointer;

  border-radius: 12px;
}

.select-dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
}

.dropdown-content a {
  color: var(--text-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: var(--pink-color);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--pink-color);
    box-shadow: 0 0 6px var(--pink-color);
    outline: none;
}

/*************/
/* BIO IMAGE */
/*************/

img.bio-image {
	width: 248px;
	padding-right: 2em;
	float: right;
}

img.bio-image:hover {
	filter: opacity(60%);
}

h4.bio-image {
	position: absolute;
	margin: 0;
	z-index: 1;

	text-align: center;

	width: 248px;
	height: auto;
	/*
	background-color: rgba(255, 255, 255, 0.6);
	*/
	filter: opacity(0%);
}

h4.bio-image:hover {
	filter: opacity(100%);
}

/******************/
/* FOOTER SECTION */
/******************/
.footer,
#container > embed:nth-child(3) {
	display: block;
	width: 100%;
	overflow: hidden !important;
	background-color: none !important;
}

#footer {
	display: block;
	margin: auto;
    margin-left: -32px;
	
	width: 100%;
	padding-top: 12px;
	padding-bottom: 32px;
	height: 36px;

	background-color: var(--bg-color);
}

#footer p {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	color: #6b6b6b;

	margin-top: 6px;
	margin-bottom: 0px;
	padding: 0px;
}

#footer img {
	padding-left: 4px;
	padding-right: 4px;

	filter: brightness(1);
}

#footer > a > img {
	height: 24px;
	width: auto;
}

#footer img:hover { transform: scale(120%); }

/* END OF STYLES */