@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&family=Open+Sans:wght@300&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(36, 36, 36);
}

.header {
    text-align: center;
    font-size: 6rem;
    text-transform: capitalize;
    color: white;
    font-family: 'Noto Serif', serif;
    animation: FadeIn 1.5s linear;
}

.subheader {
    text-align: center;
    font-size: 3rem;
    text-transform: capitalize;
    color: white;
    animation: FadeIn1 1.5s linear;
}

.sub-header {
    text-align: center;
    font-size: 3rem;
    text-transform: capitalize;
    color: white;
}

.project-list {
	justify-content: center;
	text-align: center;
	font-size: 3rem;
	text-transform: capitalize;
	display: block;
	list-style-type: none;
}

.project-list a {
	color: white;
	text-decoration: none;
}



.background-content {
    width: 100%;
    height: 100%;
    background: url("assets/background-2.jpg");
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
    background-attachment: fixed;
    position: relative;
    background-size: cover;
    }

.main-content {
	/* border: 5px dotted black; */
	margin-left: 5%;
	width: 90%;
	height: 80%;
	padding-top: 4rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	overflow: hidden;
}

.vertical-center {
	margin: 0;
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}

.btn {
	border: 2px solid white;
	padding: 5px;
	font-size: 1.4rem;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 5px;
	text-decoration: none;
	color: white;
	margin-top: 500px;
}

.btn + .btn {
	margin-left: 5%;
}

.picture-of-me {
	height: 90%;
	border: 2px solid white;
	box-shadow: 1rem 1rem 0.7rem black;
	float: left;
	margin-right: 2rem;
	background-position: center;
	object-fit: contain;
	background-size: contain;
}
.about-me {
	font-size: 2.33rem;
	color: white;
}

.card {
	text-align: center;
	width: 20%;
	height: 60%;
	border-radius: 2.5rem;
	/* background-color: white; */
	color: white;
}

.card:hover {
	
}
.card + .card {
	margin-left: 5rem;
}
.card-header {
	/* color: black; */
}
.card-image {
	width: 100%;
	height: 80%;
	border-radius: inherit;
	background-size: cover;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	border-bottom: 5px solid rgb(255, 255, 255);
	overflow-y: hidden;
	/* object-fit: cover; */
}

.center {
	text-align: center;
	justify-content: center;
}


#contact .card {
	
}


footer {
	width: 100%;
	height: 35rem;
	background-color: rgb(36, 36, 36);
	text-align: center;
	color: white;
	font-family: 'Noto Serif', serif;
}

.column {
	width: 50%; 
	height: 75%; 
	float: right;
	text-align: center;
}

.column h3 {
	font-family: 'Noto Serif', serif;
	text-decoration: underline;
	color: white;
}

.column a:hover {
    color: rgb(214, 212, 212);
}

.column a {
    width: 100%;
    height: 10px;
    font-size: 1.5rem;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: white;
}
.arrow {
	margin-top: 150px;
	font-size: 5rem;
	color: white;
	animation: MoveUpDown 1.5s linear infinite;
	/* bottom: 0; */
	position: relative;
	-webkit-text-stroke: 5px #000000;
	text-align: center;
}
.disable-select {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


@keyframes MoveUpDown {
    0% {
        bottom: 0;
    }
    50% {
        bottom: 50px;
    }
    100% {
        bottom: 0;
    }
}

@keyframes FadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes FadeIn1 {
    0% {
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.textgreen {
    color: green;
}