p,h1,h2,h3,h4,h5,h6,a {
    font-family: GilroyMedium;
}
html {
    width: 100%;
}
body {
    width: 100%;
    min-height: 100%;
    margin: 0px;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
body::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
}
p,h1,h2,h3,h4,h5,h6 {
    margin: 0px;
    margin-left: 0px;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
}
.bottom {
    min-height: 100vh;
    background: #363636;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px -2px 2rem rgba(0, 0, 0, 0.2);
}
.bottom > * {
    color: white;
}
.inner-bottom {
    background-color: rgba(240, 240, 255, 0.03);
    width: 80%;
    padding-left: 10px;
    min-height: 80vh;
    clip-path: inset(0px -2rem 0px -2rem);
    box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.05);
    min-height: calc(80vh);
    padding-bottom: 200px;
}
h4 {
    margin-top: 40px;
}
h5 {
    margin-bottom: 10px !important;
}
.fa-square-check {
    color: #6eeb83;
}
.fa-square-xmark {
    color: #ff3e41;
}
/* main stuff */
#sign-in {
    cursor: pointer;
}
.challenge {
    margin-top: 10px;
    border-left: 4px solid #EEEEEE44;
    background-color: #EEEEEE11;
    margin-left: 10px;
    padding: 10px;
    margin-right: 20px;
}
.padding {
    height: 20vh;
}
.difficulty,.solve-count {
    color: #DDDDDDDD;
}
/* challenge specific */
.go-back {
    margin-bottom: 20px;
}
.get-input {
    margin-top: 40px;
}
.put-solution {
    margin-top: 10px;
}
.desc {
    margin-top: 10px;
    border-left: 4px solid #EEEEEE44;
    background-color: #EEEEEE11;
    margin-left: 10px;
    padding: 10px;
    margin-right: 20px;
}
.completed-already {
    font-size: 1.4em;
    margin-top: 20px;
}
/* helper for challenge dialogue */
.code {
    outline: none;
    font-family: monospace;
    background-color: black;
    color: white;
    border: 1px solid #BBB;
    border-radius: 1px;
    width: fit-content;
    box-shadow: 0px 2px 0px #22222288;
    font-size: 1.2em;
}
.bold {
    text-shadow: 0px 0px 0.2rem rgba(255, 255, 255);
}
.code::selection {
    background-color: #67e0a3;
    color: black;
}
.code::-moz-selection {
    background-color: #67e0a3;
    color: black;
}
