*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: sans-serif;
    color: #000;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(to bottom, #f67e5c, #b65564);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 380px;
    width: 80%;
    height: auto;
    display: block;
}
