@charset "utf-8";

html {
  scroll-behavior: smooth;
}

ul, h2 {
	font-family: Raleway, sans-serif;
	font-weight: 700;

}

h1, p, form {
	font-family: Raleway, sans-serif;
	font-weight: 400;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: black;
  	left: 0;
  	z-index: 9999;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav li {
    padding: 20px;
}

nav a {
    color: white;
    text-decoration: none;
}

header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
	background-color: powderblue;
}

header h1 {
    font-size: 48px;
    color: #333;
}

.abouttwo {
	background-color: linen;
}

.portfoliotwo {
	background-color: powderblue;
}

.contacttwo {
	background-color: linen;
}

section {
	height: 100vh;
    padding: 100px;

}

section h2 {
    font-size: 36px;
    color: #333;
}

.row {
	text-align: center;
	margin-left: 1px;
	color: #333;
}

.col-sm { 
	padding: 5px;
	width: 30%;
	min-height: 70vh;
}


form label {
    display: block;
    margin-bottom: 10px;
}

img {
  	border-radius: 8px;

}


form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form input[type="submit"] {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #555;
}
