/* disable browser css */

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

/* general */

body {
	font-family: 'Courier New', monospace;
	background: #000;
}

body h1 {
	font-size: 5vh;
	text-align: center;
	margin: 30px 30px 20px;
	color: #fff
}

p {
	color: #fff;
	margin: 20px
}

section {
	padding-top: 15vh;
}

hr {
	border: 0;
	width: 40%;
	height: 0.3vh;
	background: linear-gradient(to right, #E506F3, #36E7EA);
	margin: auto
}

img {
	color: #fff
}

/* navbar */
nav {
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: fixed;
	top: 0;
	background: #000;
	height: 15vh;
	width: 100%;
	padding: 20px;
	border-bottom: 0.5vh solid;
	border-image: linear-gradient(to right, #E506F3, #36E7EA) 1;
}

nav button {
	color: #fff;
	background: none;
	border: none;
}

nav img {
	height: 10vh;
	width: auto;
	display: block;
	transform: translateX(8vw);
}

#nav-menu {
	display: flex;
	transform: translateX(12vw);
}

#nav-menu a {
    display: block;
    padding: 10px 15px;
    color: #fff;
	font-size: 3vh;
    text-decoration: none
}

#nav-menu a:hover {
	text-decoration: underline #36E7EA 1px
}

#sidemenu-open-btn,
#sidemenu-close-btn {
	display: none;
}

#dark-switch,
#light-switch {
	font-size: 5vh;
	margin: 0 5vw;
	width: 1vw;
}

#dark-switch {
	display: none;
	color: #000;
}

/*showcase*/

#showcase {
	height: 90vh;
	width: 100%;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 10vh;
	background-image: url('../showcase.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#showcase h1 {
	font-size: 5vh;
}

#showcase a {
	font-size: 3vh;
	color: #fff;
	text-decoration: none;
}

/*about*/

#about-info {
	display: flex;
	flex-direction: row;
}

#intro {
	width: 50%;
	line-height: 2;
	font-size: 2.5vh;
	margin: 20px
}

#portrait {
	width: 50%;
	max-height: 100%;
	margin: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#portrait img {
	width: 50%;
	height: auto;
	border-radius: 30px;
}

#cv-button {
	width: 100%;
	display: flex;
	justify-content: center;
}

#cv-button a {
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	background: #9E98DA;
	padding: 5px 20px;
	margin: 50px;
	border: 5px solid #36E7EA;
	border-radius: 100px;
}

#cv-button a:hover {
	cursor: pointer;
	border-color: #E506F3;
}

/*skills*/

#skill-logos {
	display: flex;
	justify-content: space-around;
	margin-top: 50px;
	flex-wrap: wrap;
}

#skill-logos img {
	max-height: 20vh;
	padding: 1vw
}

/*projects*/

#projects-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.project {
	text-align: center;
	height: 450px;
	width: 300px;
	margin: 40px;
	border: 5px solid #36E7EA;
	border-radius: 15px;
	overflow: hidden;
}

.project:hover {
	border-color: #E506F3;
}

.project a {
	text-decoration: none;
}

.project a:active {
	text-decoration: none;
}

.project img {
	height: 250px;
	width: 100%;
}

.project h2 {
	color: #fff
}

/*contact*/

#contact {
	color: #fff;
	padding: 40px;
	background-image: url('../showcase.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#contact h2 {
	text-align: center;
	background: #000;
	width: 50%;
	margin-top: 30px;
	padding: 20px;
	border-radius: 20px 20px 0 0;
}

#contact-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

form {
	width: 50%;
	padding: 40px;
	background: #000;
	border-radius: 0 0 20px 20px;
}

form input {
	width: 100%;
}

#form-btn {
	width: 100%;
	display: flex;
	justify-content: center;

}

#form-btn input {
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
	background: #9E98DA;
	border: 5px solid #36E7EA;
	border-radius: 100px;
	width: 30%;
	max-width: 150px;
	padding: 5px 0;
	margin: 10px 30px;
}

#form-btn input:hover {
	cursor: pointer;
	border-color: #E506F3;
}

#name, #email {
	height: 30px;
}

#message {
	height: 100px;
	width: 100%;
}

/*footer*/

footer {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

footer img {
	display: block;
	height: 15vh;
	margin: 5vh 3vw 0 3vw;
	object-fit: contain;
}

footer a {
	color: #fff;
	text-decoration: none;
}

#social-media {
	height: 15vh;
	font-size: 2.5vh;
	margin: 5vh 3vw 0 3vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#social-media a {
	margin: 1vh;
}

#social-media a:hover {
	color: #36E7EA;
}

#copyright {
	font-size: 2vh;
	text-align: center;
}











