@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color:  #e0eed5;
}

header {
    display: flex;
    justify-content: center;
    padding: 2%;
    background-color:#378552 ;
}

h1 {
    font-size: xx-large;
    font-weight: 800;
    color: #e0eed5;
}

article  {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    align-items: center;
    padding-top: 5%;
    padding-bottom: 5%;
    width: 50%;
    margin: auto;
    max-width: 1280px;
    color: #378552;
    font-size: large;
}

article p {
    font-weight: 500;
}

img {
    width: 20rem;
    height:  20rem;
    object-fit: cover;
    object-position: 0 35%;
    border-radius: 50%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

