* {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 90vw;
    height: 25vh;

    background-color: rgb(247, 242, 242);
    border-radius: 25px;
}

h1 {
    color: rgb(111, 163, 209);
}