* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: rgb(1, 9, 33);
}

body::-webkit-scrollbar{
    display: none;
}

/* Header  */

.home-section {
    background-color: rgb(1, 9, 33);
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 10px 2%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home-section h1 {
    font-size: 30px;
}

li {
    display: inline;
    margin-right: 15px;
}

li a:hover {
    color: rgb(12, 227, 159);
    transition: 0.2s;
}

.red {
    color: rgb(12, 227, 159);
} 

hr {
    position: relative;
    top: 10px;
    background-color: white;  
    height: 3px;
} 

/* Home  */

.home {
    padding: 100px 0;
    display: flex;
    align-items: center ;
}

.text {
    margin-left: 80px; 
}

.home h2 {
    font-size: 50px;
    line-height: 60px;
}

.home p {
    font-size: 20px;
}

button {
    padding: 10px 20px;
    margin-top: 25px;
    border: 1px solid;
    font-size: 20px;
    font-weight: 600;
    background-color: transparent;
    color: rgb(12, 227, 159);
}

button:hover {
    background-color: rgb(12, 227, 159);
    color: rgb(1, 9, 33);
    transition: ease 0.3s;
}

.home img {
    border-radius: 100%;
    height: 25%;
    width: 25%;
    position: relative;
    left: 170px;
    /* top: 80px; */
}

/* About */

.about {
    padding: 30px 0;
    text-align: center;
    /* background-color: peachpuff; */
}

.about h2 {
    font-size: 25px;
    margin-bottom: 20px;
}

.about p {
    font-size: 20px;
}

/* Projects */
.projects {
    padding: 30px 0;
    text-align: left;
}

.projects h2 {
    text-align: center;
}

.projects img {
    margin-left: 50px;
    margin-top: 40px;
    height: 500px;
    width: 350px;
}

.big-pic img {
    height: 100%;
    width: 90%;
}

/* Contact Me  */
.contact {
    padding: 30px 0;
    text-align: left;
}
 
.contact h2 {
    text-align: center;
    margin-bottom: 10px;
}

.contact-details {
    display: flex;
}

.contact-details-org {
    margin-top: 60px;
    margin-left: 20px;
    font-size: 25px;
}

.contact-details-org img {
    width: 20px;
    height: 20px;
    align-items: center;
    margin-right: 5px;
}

.contact-details-org h4 {
    margin-top: 5px;
    font-size: 20px;
}

.message-box {
    margin-top: 20px;
    margin-left: 450px;
}

/* .button {
    text-align: center;
} */

input {
    height: 20px;
    width: 505px;
    margin-bottom: 5px;
}

input, textarea {
    margin-top: 10px;
    border-radius: 2px;
    border: none;
    color: white;
    background-color: rgb(54, 57, 66);
    resize: none;
}

footer{
    background-color: rgb(77, 81, 93);
    height: 70px;
}

.footer {
    display: flex;
    /* margin-top: 20px; */
    /* padding: 10px 0; */
}

.footer h1 {
    margin-left: 20px;
}

.footer p {
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
    margin-left: 440px;
}