@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");

body {
    background-color: #1f1e33;
}

h1, h2, p, a, div {
    font-family: "Open Sans", sans-serif;
}


h1, h2, p, div {
    text-align: center;
}

h1 {
    color: mistyrose;
    font-size: 40px;
}

h2 {
    color: rgb(247, 209, 204);
    font-size: 35px;
}

p {
    color: rgb(211, 188, 244);
    font-size: 17px;
}

a {
    color: rgb(226, 249, 235);
    text-decoration: none;
}

a:hover {
    color: #e4c7c7;
    text-decoration: underline;
    cursor: pointer;
}

div {
    color: rgb(226, 249, 235);
}

footer {
    display: flex;
    justify-content: center;
    position: fixed;

    bottom: 0;
    left: 0;

    width: 100%;

    padding-bottom: 20px;
}

footer > * {
    margin-right: 10px;
}

footer:last-child {
    margin-right: 0;
}
