*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #fcf9f9;
    color: #060606;
}

#header{
    width: 100%;
    height: 10vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
#header span{ 
    font-size: 30px;
    color: #ff004f;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.img-text{
    padding:5%;
    width: 100%;
   font-size: 20px;
   text-align: justify;
}
img{
    border-radius: 8px;
    padding: 20px;
    width: 400px;
    border-style:outset;
    align-items: center;
}
h1{
    padding: 10px 10%;
    font-weight: 400;
    font-style: italic;
    align-items: center;
}
.btn.btn2{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid #ff004f;
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: background 0.5s;
    background-color: #ff004f;
}
    