html {
    font-family: Helvetica, sans-serif;
}

body {
    height: 98svh;
    height: 98vh;
    background-color: #457795;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: hidden;
}

p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

#header {
    width: 100%;
    font-size: 2.0rem;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.5rem;
    background-color: none;
    text-align: center;
    color: white;
}

#toggle {
    margin-left: auto;
    margin-right: auto;
}

#toggle > button {
    text-decoration: none;
    width: 100vw;
    max-width: 200px;
    height: 2.0rem;
    border-radius: 0.5rem;
    background-color: #A5C1C4;
    border-style: none;
    color: #2B414E;
    font-size: 1.25rem;
    text-align: center;
}

#toggle > button:hover {
    cursor: grab;
}

#wrapper {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    row-gap: 2rem;
    margin-left: auto;
    margin-right: auto;
    align-items: top;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.appheader {
    background-color: #BE3A5F;
    color: #FBF2E4;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    border-radius: 0.75rem;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    border-color: #FBF2E4;
    border-width: 0.15rem;
    border-style: solid;
}

.applications {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: min-content;
    background-color: #A5C1C4;
    border-radius: 0.75rem;
}

.appbutton {
    text-decoration: none;
}

.appbutton > button {
    width: 100vw;
    max-width: 300px;
    height: 2.75rem;
    border-radius: 0.5rem;
    background-color: #FBF2E4;
    border-style: none;
    color: #2B414E;
    font-size: 1.15rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1.25rem;
    text-align: left;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 1rem;
}

.appbutton > button > img {
    height: auto;
    width: auto;
    aspect-ratio: initial;
    max-height: 2.15rem;
    max-width: 2.15rem;
    margin-top: 0.15rem;
    margin-bottom: 0.15rem;
    vertical-align: middle;
}

.appbutton > button:hover {
    cursor: grab;
    background-color: #BE3A5F;
    color: white;
}

#footer {
    width: 100%;
    text-align: center;
    color: white;
    background-color: #A5C1C4;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.grow { 
    transition: all .15s ease-in-out; 
}

.grow:hover { 
    transform: scale(1.07); 
}

.internal {
    display: none;
}

.admin {
    display: none;
}

#all.admin:target {
    display: inherit;
}

@media only screen and (max-width: 1409px) {
    #wrapper {
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 389px) {
    .toggle {
        top: 5rem;
    }
    #cb-label {
        top: calc(26px + 1.25rem);
    }
    #wrapper {
        margin-top: 3.5rem;
    }
}