@charset "UTF-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}



nav {
  position: sticky;
  top: 0;
  background-color: #333;
  color: #fff;
  padding: 10px;
	align-content: space-between;
  justify-content: space-between;
	text-align: center;
	font-size: 15pt;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-content: center;
    scroll-behavior: smooth;
    text-align: center;
    position: relative;
	transform: translate(40%,0);
}

nav li {
  margin: 0 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
	display: flex;
}

section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#home {
    background-color:#009BAE;
	height: 100vh;
}

#about {
    background-color: #FFA62D;
	height: 100vh;
}

#portfolio {
  background-color:#009BAE;
	height: 127vh;
	
	
}


#contact{
	height: 50vh;
	display: flex;
	background-color:#FFA62D;
}

h1,h2,h3,h4,h5,h6,p{
	font-family: 'Alkatra', cursive;
}



.contact {
  margin: 50px auto;
  max-width: 600px;
  text-align: center;
	
}

.contact h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact label {
  font-size: 1.2em;
  margin-bottom: 10px;
	align-items: center;
}

.contact input,
.contact textarea {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
  width: 100%;
  max-width: 500px;
}

.contact button {
  background-color: #0077FF;
  color: #FFF;
  border-radius: 5px;
  border: none;
  padding: 10px 20px;
  font-size: 1.2em;
  cursor: pointer;
}

.contact button:hover {
  background-color: #0055CC;
}


#message{
	align-content: center;
	justify-content: center;
}


.container {
  display: flex;
}

.column {
  flex: 1;
  margin: 0 10px;
	width: auto;
}

.propic {
  border-radius: 50%;
 	
}

h1{
	font-size: 40pt;
}

p{
	font-size: 20pt;
}

.card-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card {
  width: 30%;
	height: 90vh;
  background-color:lightblue;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  text-align:center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	margin: 2%;
	
}

.card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

h2{
	font-size: 35pt;
}

p{
	color: white;
	text-shadow: 2px 2px black;}

h5{
	font-size: 12pt;
	
	
	
}