* {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: white;
}


.kidlearn {
    font-family: "Chalkboard SE";
    font-size: x-large;
    color: black;
}

.button {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: .75em;
    color: blue;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.button:disabled {
    color: lightgray;
    cursor: default;
}

.topnav {
    height: 78px;
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    border-bottom: 2px solid black;
}

.topnav div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding-left: 10px;
}

.nav-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.nav-buttons div {
    font-size: 1em;
    width: fit-content;
}

.body {
    position: absolute;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
}

.main {
    flex: 1;
    display: flex;
    padding: 10px 10px;
}

.content {
    flex: 1;
    display: flex;
    overflow: auto;
}

.box {
    min-height: -webkit-min-content;
    display: flex;
    flex-direction: column;
}

.home {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home img {
    width: 25vw;
    height: auto;
}

.games {
    padding: 10px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    margin-top: 10px;
}

.game {
    padding: 5px;
    background-color: #eeeeee;
}

.appStoreBadge {
    width: 25vw;
    max-width: 94px;
    height: auto;
    margin-top: 5px;
}

.game div {
    color: black;
}

.gameLogo {
    padding: 5px;
    width: 25vw;
    height: auto;
}

.gameTitle {
    color: black;
}

.gameRight {
    gap: 5px;
    display: flex;
    flex-direction: column;
}

.gameBody {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
}

.contact {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin-top: 10px;
}

.contact p {
    margin-top: 1em;
    margin-bottom: 1em;
}

.contactForm {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.contactForm>div>textarea {
    width: 50vw;
}

.contactRight {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.contactStatus {
    padding-left: 10px;
    border: none;
    outline: none;
    resize: none;
}

.about {
    padding: 10px;
}

.about p {
    margin-top: 1em;
}

.privacy {
    padding: 10px;
}

.privacy p {
    margin-top: 1em;
}

.hlmgSupport {
    padding: 10px;
}

.hlmgIcons {
    padding: 10px;
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.hlmgIcons img {
    padding: 5px;
    width: 25vw;
    height: auto;
}

.hlmgSupport h3 {
    margin-top: 1em;
}

.hlmgSupport p {
    margin-top: 1em;
}

