/* General */
body {
    background-color: #eeeeee;
    margin: 0;
    font-size: large;
}

* {
    font-family: monospace;
}

/* Navigation bar */
nav {
    background-color: #5f9ea0;
    height: 35px;
    box-sizing: content-box;
}

nav a {
    text-decoration: none;
    color: white;
    background-color: #55788f;
    height: 100%;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a:hover {
    color: black;
    background-color: #74b898;
}

nav .left {
    float: left;
}

nav .right {
    float: right;
}

nav a.fa-hand-point-left::before  {
    font-family: 'Font Awesome 5 free';
    font-weight: 400;
    content: '\f0a5';
}

nav a.fa-coffee::before {
    font-family: 'Font Awesome 5 free';
    font-weight: 400;
    content: '\f0f4';
}

/* Main card / Content */

#main-content {
    width: 70%;
    height: auto;
    margin: 0% auto;
    background-color: #fff;
    border-radius: 4px;
    filter: drop-shadow(0 0 40px #999999);
    position: relative;
    margin: 10% auto;
    text-align: center;
    padding: 20px;
    display: table;
    grid-auto-flow: row;
    gap: 10px;
    overflow: auto;
}

@media screen and (max-width: 550px) {
    nav a span {
        font-size: 0;
    }
}

#btn-generate {
    font-size: large;
    font-weight: bold;
    padding: 5px 50px;
    font-family: Rokkit;
    margin: 0px auto;
    width: 70%;
}


/* The switch - the box around the slider */
.switch {
position: relative;
display: inline-block;
width: 30px;
height: 17px;
margin: 10px
}

/* Hide default HTML checkbox */
.switch input {
opacity: 0;
width: 0;
height: 0;
}

/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
border-radius: 17px;
}

.slider:before {
position: absolute;
content: "";
height: 13px;
width: 13px;
left: 2px;
bottom: 2px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
border-radius: 50%;
}

input:checked + .slider {
background-color: #2196F3;
}

input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
-webkit-transform: translateX(13px);
-ms-transform: translateX(13px);
transform: translateX(13px);
}
