* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: white;
    background-color: #16182c;
    max-width: 1024px;
    margin: 0px auto;
}

header {
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'Syncopate', sans-serif;
    font-size: 24px;
}

header img {
    height: 64px;
    width: 64px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section {
    width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
    padding-bottom: 24px;
    border-bottom: #FFFFFF33 1px solid;
}

#logo img {
    height: 120px;
    margin-top: 20px;
    margin-bottom: 32px;
    box-shadow: white 0px 0px 12px 0px;
}

#icon img {
    height: 120px;
    margin-top: 10px;
    margin-bottom: 40px;
}

#screenshots {
    text-align: center;
}

#screenshots .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

#screenshots img {
    height: 96px;
    margin-top: 10px;
}

#founder #quote {
    font-style: italic;
    margin-top: 12px;
    color: #FFFFFF7F;
}

#contact {
    align-items: start;
}

#contact p {
    margin-bottom: 2px;
}

h1 {
    font-family: "Fredoka", sans-serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
}

h2 {
    font-family: "Fredoka", sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 20px;
    text-wrap: balance;
    line-height: 1.4;
    color: #AAA
}

p {
    color: #AAA;
    line-height: 1.4;
    margin-bottom: 32px
}

p#quote {
    color: #DDD;
    border-left: 4px solid #37A2E8;
    padding-left: 12px;
    margin-left: 0;
    font-style: italic;
    line-height: 1.6;
}

a, a:visited {
    color: #37A2E8;
    text-decoration: none;
}

.button {
    background-color: #2d7db2;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
}

.button:hover {
    background-color: #37A2E8;
}

a.button, a.button:visited {
    color: white
}