.mk-zero-out {
    padding: 0px;
    margin: 0px;
}

.mk-grid-container-3-1 {
    display: grid;
    grid-template-columns: 15% 75% 10%;
    grid-template-rows: auto;
}

.mk-border-0 {
    border: 0px solid white;
}

.mk-border-1 {
    border: 1px solid grey;
}

.mk-flex-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    align-content: left;
    gap: 10px 10px;
}

.mk-flex-right {
    display: flex;
    align-items: top;
    justify-content: right;
    flex-wrap: wrap;
}

.mk-flex-left {
    display: flex;
    align-items: top;
    justify-content: left;
}

.mk-flex-center-top {
    display: flex;
    align-items: top;
    justify-content: center;
}

.mk-nav-button {
    border-radius: 7.5px;
    background-color: DeepSkyBlue;
    height: 50px;
    border: 0px;
    padding: 5px;
    margin: 0px 0px 8px 8px;
}

.mk-nav-button:hover {
    background-color: rgb(58, 206, 255);
}

.mk-nav-button:active {
    background-color: rgb(175, 255, 255);
}

.mk-nav-button-text {
    font-family: "Varela Round";
    font-weight: 900;
    font-size: 18px;
    color: white;
}

.mk-margin-left-10 {
    margin: 0px 0px 0px 10px;
}

.mk-logo {
    color: DeepSkyBlue;
    font-family: "Varela Round";
    font-size: 25px;
    font-weight: 900;
}

.mk-line-1 {
    width: 100%;
    height: 2px;
    background-color: rgba(0,0,0,0.25)
}

.mk-vertical-spacer-3 {
    width: 100%;
    height: 3px;
}

.mk-horizontal-spacer-10 {
    width: 10px;
}

.mk-horizontal-spacer-50 {
    width: 50px;
}

.mk-vertical-spacer-10 {
    width: 100%;
    height: 10px;
}

.mk-vertical-spacer-50 {
    width: 100%;
    height: 50px;
}

h1 {
    font-family: "Varela Round";
}

.mk-flex-column {
    display: flex;
    flex-direction: column;
}

.mk-giant-text {
    font-family: "Varela Round";
    font-weight: 900;
    font-size: 50px;
}