@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Macondo&family=Rubik+Distressed&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
   /* margin-top: 5rem; */
}
body {
    height: 100vh;
    background-color: hsl(36, 60%, 95%);
    font-family: 'Macondo';
}
header {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: cadetblue;
    border: 2px solid black;
}
header ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
header ul li {
    list-style: none;
}
/* about section */
.about-section {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    /* align-items: center; */
    margin: 3rem auto;
}
h2 {
    text-align: center;
    padding: 30px 0px 0px;
    text-decoration: underline;
}
h2 ~p {
     padding: 10px 20px;
}
.about-section h3 {
    text-align: center;
    text-decoration: underline;
}

.about-section ul li {
    list-style: none;
    padding: 1rem 5rem 1rem 1rem;
    text-align: left;
}
/* hobbies and skills borders */
.hobbies, .skills {
    border: 1px solid black;
    border-radius: 10px;
    min-height: 335px;
    min-width: 250px;
    background-color: cadetblue;
}
.projects h2 {
    margin: 5rem 0;
}
.project-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.project-1, .project-2, .project-3 {
    border: 1px solid black;
    min-height: 335px;
    min-width: 250px;
    margin: 3rem;
    padding-left: 1.5rem;
    background-color: cadetblue;
}
.project-container h4 {
    text-align: center;
    margin-bottom: 20px;
    padding: 1rem;
}
footer {
    border: 1px solid black;
    background-color: cadetblue;
    margin-bottom: 2.5rem;
    margin: 0px 4.5rem;
}
footer h2 {
    margin-bottom: 1.5rem;
}
.contact-details {
    display: flex;
    justify-content: space-evenly;
}
textarea {
    width: 100%;

    height: 100%;
}