* {
    font-family: "Comfortaa", sans-serif;
    box-sizing: border-box;
}

html {
    overflow: hidden;
}

body {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(0deg, rgb(4, 1, 17), rgb(0, 19, 59));
    color: #fff;
    margin: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

body > img {
    height: 96px;
}

h1 {
    margin: 0
}

h1, p {
    max-width: 720px;
    text-align: center;
}

p {
    line-height: 28px;
}

a[href]:not(.icon) {
    color: aqua;
}

a.icon {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

div.links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
}

.interactive {
    opacity: .7;
    transition: .12s ease;
}

.interactive:hover {
    opacity: 1;
}

.interactive:active {
    opacity: .7;
    transition-duration: .04s;
}