@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");

body {
    font-family: "JetBrains Mono", monospace;
    color: rgb(255, 255, 255);
    background-color: rgb(10, 30, 40);
    padding: 0;
    margin: 0;
}

.container {
    width: 100vw;
    height: 100vh;
    display: grid;
    place-content: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.icon {
    border-radius: 50%;
}

a {
    color: rgb(100, 150, 255);
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

h1 {
    font-size: 4rem;
}
