* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #faf4f1;
    color: black;
    font-family: Arial, sans-serif;
    max-width: 100vw;
    font-size: 14px;
}


/* HEADER */
.header {
    background-color: white;
    top: 0px;
    position: fixed;
    z-index: 1000;
}

.header__container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100vw;
}

.header__logo {
    display: flex;
    justify-content: center;
}

.header__logo img {
    display: flex;
    width: 150px;
    margin: 20px;
}

/* NAV MENU */
nav {
    display: flex;
    justify-content: space-evenly;
    background-color: white;
    width: 100vw;
    font-size: 16px;
    padding: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 100px;
}

nav li {
    display: flex;
    justify-content: center;
    align-items: center;

}

nav li img {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    margin-right: 5px;
}

nav li.signin {
    border: 1px solid black;
    background-color: white;
    color: black;
    padding: 5px 10px;
}


nav a {
    text-decoration: none;
    color: black;
    background-color: white;
    padding: 5px 15px;
}

/* ABOUT ME */

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100vw;
    padding: 20px;
    flex-direction: column;
    margin-top: 250px;
}

.about__contentainer {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.about__item1 {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;

}

.about__item1 img {
    display: flex;
    width: auto;
    height: 380px;
}

.about__item2 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    line-height: 2;
    font-size: 14px;
    padding: 40px;
    border-radius: 15px;
}

.about__item2 img {
    width: 35px;
    display: inline-block;
    vertical-align: middle;
}

.about__item2 h3 {
    display: inline-block;
    vertical-align: middle;
}

.about__item2 button {
    background-color: #e1d1c9;
    padding: 20px 30px;
    border-radius: 30px;
    font-size: 14px;
    border: none;
}

.about__item2 button:hover {
    background-color: #000;
    color: white;
}

.about__socials {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.about__socials a {
    text-decoration: none;
}

.about__socials img {
    display: flex;
    width: 25px;
}

.about__content p {
    letter-spacing: 2px;
    font-size: 14px;
}

.about__content h3 {
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: lighter;
}

.about__content h1 {
    letter-spacing: 3px;
    font-size: 40px;
    padding: 10px 0px;
    font-family: Arial, sans-serif;
    font-weight: lighter;
}

.about__item3 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
    font-size: 14px;
    background-color: white;
    padding: 20px 50px;
    line-height: 2;
}

.about__item3 img {
    width: 30px;
    align-content: center;
}


.about__item3__button {
    display: flex;
    justify-content: flex-start;
    font-size: 16px;
}


.about__item3__button button {
    background-color: #e1d1c9;
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
}

.about__item3__button button:hover {
    background-color: #000;
    color: white;
}

/* ABOUT PAGE 2 */
.aboutMe__container {
    display: flex;
    margin: 50px;
    padding: 30px;
    justify-content: space-between;
    font-size: 16px;
}

.aboutMe__left {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.aboutMe__left h3{
    font-size: 20px;
    
}

.aboutMe__left img {
    width: 35px;
    display: inline-block;
    vertical-align: middle;
}

.aboutMe_profile {
    display: flex;
    justify-content: center;
}

.aboutMe_profile img {
    display: flex;
    width: 150px;
    margin-bottom: 20px;
}

.aboutMe_left button {
    background-color: #e1d1c9;
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
    font-size: 14px;
}

.aboutMe_left button:hover {
    background-color: #000;
    color: white;
}


.aboutMe_right {
    display: flex;
    flex: 1;
    text-align: left;
    flex-direction: column;
    line-height: 2;
    background-color: white;
    border-radius: 15px;
    padding: 50px;
}

/* SHOWCASES*/

.showcase__container {
    text-align: center;
    padding: 30px;
}

.showcase__container h3 {
    text-align: center;
    font-size: 25px;
    margin-top: 80px;
}

.showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 100px;
    margin: 0 auto;
    padding: 50px 0;
    width: max-content;
}

.showcase__container p {
    text-align: center;
    font-size: 14px;
}

.showcase__item {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    padding: 30px 50px;
    font-size: 14px;
}

.showcase__item img {
    display: block;
    margin: 0 auto;
    width: 200px;
    margin-bottom: 30px;
}

.showcase__item button {
    display: block;
    margin: 0 auto;
    background-color: #e1d1c9;
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
    font-size: 14px;
}

.showcase__item button:hover {
    background-color: black;
    color: white;
}


/* CONTACT ME */

.contact__container {
    padding: 50px;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.contact__left {
    display: flex;
    flex-direction: column;
    flex: 1;
    flex-wrap: wrap;
    padding: 50px;
}

.contact__left a {
    text-decoration: none;
}

.contact__left h3 {
    font-size: 25px;
}

.contact__left h4 {
    font-size: 14px;
    margin-top: 40px;
}

.contact__left p {
    font-size: 14px;
    line-height: 3;
}

.contact__left__img {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    margin-right: 20px;
}

.profilesocial2 img {
    width: 25px;
    margin: 20px 5px;
    display: inline-block;
}


.contact__right {
    display: flex;
    flex: 1;
    padding: 50px;
}

.contact__right img {
    width: 25px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.7;

}

.form__container {
    background-color: white;
    padding: 20px 50px;
    width: 550px;
    border-radius: 15px;
}

.form__button {
    background-color: #e1d1c9;
    border-radius: 50px;
    border: none;
    color: black;
    padding: 7px 20px;
    margin: 30px auto;
    font-size: 14px;
    display: flex;
}

.form__button:hover {
    background-color: black;
    color: white;
}

.form__container label {
    line-height: 3;
}

.form__container textarea {
    width: 450px;
    height: 100px;
    background-color: #fafafa;
    border-radius: 10px;
    border: none;
}

.form__field {
    width: 450px;
    padding: 10px 0;
    border-radius: 5px;
    background-color: #fafafa;
    border: none;
}
