*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
header{
    width: 100%;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header a{
    padding: 9px 30px;
    font-size: 20px;
    color: #00481e;
}
header a:hover{
    color: blue;
}
a{
    text-decoration: none;
}
header img{
    height: 40px;
}
footer{
    padding: 20px 0;
    padding-bottom: 40px;
    background-color: #fff;
}
footer p{
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 12px;
}
.title{
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    letter-spacing: 2px;
}
.p{
    font-family: "Josefin Sans", sans-serif;
    font-size: 22px;
    line-height: 1.4;
}

@media (max-width: 760px) {
    header{
        height: auto;
        display: block;
    }
    header a{
        padding: 0;
        display: block;
        height: 46px;
        line-height: 46px;
        text-align: center;
    }
    footer p{
        font-size: 14px;
        width: 100%;
        
    }
}