html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: lightcyan;
    margin: 0;
    padding: 0;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: whitesmoke;
}

h1 {
    display: flex;
    flex-direction: column;
}

h1 span {
    font-size: .6em;
    color: #333;
    text-transform: uppercase;
    font-style: oblique;
}

footer {
    display: flex;
    gap: 20px;
}

footer :first-child {
    margin-right: auto;
}