/* POPPINS FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
/* CURSIVE FONT */
@import url('https://fonts.googleapis.com/css?family=Cookie');

*{
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.header {
    background: #11994A;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding-top: 40px;
    padding-bottom: 40px; */
    height: 230px;
    width: 100%;
}

.header-content {
    display: block;
}

.logo-img {
    border-radius: 12px;
}

.slogan {
    color: white;
    font-size: 27px;
    padding-top: 10px;
    display: block;
    font-family: 'Cookie'
}
