/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* normalize some stuff */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* */
.content-wrapper {
    width: 90%;
    max-width: 1000px;
    margin: 2vmax auto;
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* */
.header-h1 {
    margin: 2vmax auto;
    text-align: center;
    text-shadow: 2px 2px rgb(241, 227, 4);
    font-weight: bold;
    font-size: 3vmax;
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* */
.single-example-wrapper {
    margin-top: 3vmax;
}
.single-example-wrapper code {
    font-size: 1.8vmax;
    display: block;
}

/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/*  */
.btn-msg {
    margin: 0.5vmax auto 1vmax auto;
    padding: 0.75vmax 1.5vmax;
    border: solid 2px rgb(241, 227, 4);
    border-radius: 2vmax;
    user-select: none;
    margin: 0 auto;
    background-color: rgb(29, 29, 31);
    color: rgb(241, 227, 4);
    display: inline-block;
    cursor: pointer;
    font-size: 1.25vmax;
}

.btn-msg-large {
    margin: 1vmax auto 2vmax auto;
    padding: 1.5vmax 3vmax;
    border: solid rgb(241, 227, 4) 1px;
    background-color: rgb(241, 227, 4);
    color: black;
    font-weight: bold;
    border-radius: 2vmax;
    font-size: 2vmax;
    cursor: pointer;
}
.btn-msg-large:hover {
    background-color: white;
}
.btn-msg:hover {
    background-color: white;
    color: black;
}

.btn-msg-alert {
    margin: 0.5vmax auto 1vmax auto;
    padding: 0.25vmax 0.5vmax;
    border: solid red 1px;
    background-color: white;
    color: black;
    font-weight: bold;
    border-radius: 2vmax;
    font-size: 1.25vmax;
}
.btn-msg-alert:hover {
    background-color: red;
}


/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
/* footer stuff  */
#footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(241, 227, 4);
    color: black;
    text-align: center;
    padding: 1vmax 0;
}
#footer a {
    text-decoration: none;
    color: black;
}