@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

* {
    margin     : 0;
    padding    : 0;
    box-sizing : border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    min-width      : 100vw;
    min-height     : 100vh;
    display        : flex;
    justify-content: center;
    align-items    : center;
    flex-direction : column;
    gap            : 30px;
    background     : #002f79;
    text-align     : center;
    letter-spacing: 0.05em;
}

h1 {
    color: #81f398;
}

h3 {
    color: #fcda78;
}