:root {
    --black: #111;
    --white: #fff;
}

html {
    font-family: sans-serif;
    color: var(--white);
    min-height: 100%;
    background: rgb(43,83,160);
    background: linear-gradient(40deg, rgba(43,83,160,1) 0%, rgba(0,148,203,1) 80%, rgba(11,195,184,1) 100%);
}

body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    min-height: 100vh;
    text-align: center;
}


img {
    max-width: 100%;
    height: auto;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    margin: 24px;
}

@media screen and (max-width: 726px) {

  }

  @media screen and (max-width: 480px) {

  }