*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #032764;
}

header .logo {
    position: relative;
    max-width: 80px;
}

header ul {
    position: relative;
    display: flex;
}

header ul li {
    list-style: none;
}

header ul li a {
    display: inline-block;
    color: white;
    font-weight: 400;
    margin-left: 40px;
    text-decoration: none;
}

.content {
    position: relative;
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 2rem;
}

.content h2 {
    padding-bottom: 5rem;
    font-size: 2.5rem;
    line-height: 2.5rem;
}

.imgBox {
    padding-left: 9rem;
}

.imgBox img {
    border-radius: 10%;
}

.store {
    padding: 1rem;
    padding-top: 3rem;
}

footer {
    position: absolute;
    width: 100%;
    padding: 20px 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #282e3a;
    color: white;
    text-align: center;
    font-size: .75rem;
}

footer ul {
    position: relative;
    display: flex;
}

footer ul li {
    list-style: none;
}

footer ul li a {
    display: inline-block;
    color: white;
    font-weight: 400;
    margin-left: 40px;
    text-decoration: none;
}

footer a {
    color: white;
}

footer p {
    padding: 1rem;
}

footer .sites a {
    text-decoration: none;
}

.footer-img {
    bottom: 0;
}