* {
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-family: "MuseoModerno", sans-serif;
    font-size: 1rem;
    color: #fff;
    background: #0f0c29;
    background: -webkit-linear-gradient(to top, #24243e, #302b63, #0f0c29); 
    background: linear-gradient(to top, #24243e, #231e5e, #1d193f, #24243e); 
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
body > section {
    flex-grow: 1;
    align-content: center;
}
body > section > p {
    font-size: 1.2rem;
}
body > section > p:last-child{
    text-align: end;
    margin-top: -0.5rem;
}
footer {
    padding: 2rem;
    font-family: "Dosis", sans-serif;
}
svg {
    width: 100%;
}