/* header */
header {
    font-family: 'Poppins';
    /* background-image: linear-gradient(to bottom right, red, yellow); */
    background-color: rgba(221, 217, 217, 0.808);
    margin-bottom: 0px;
    height: 20vh;

}

.logo {
    float: left;
    position: absolute;
    padding-top: 1.5em;
    z-index: 1;
    top: 0;
    height: 20vh;
}

.bar {
    float: right;
    color: black;
    padding-right: 3em;
}

/* navigation / hamburger menu */
nav {
    float: right;
}

/* Style the navigation menu */
.topnav {
    overflow: hidden;
    background-color: #333;
    position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #links {
    display: none;
}

/* Style navigation menu links */
.topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
    background: black;
    display: block;
    /* position: absolute;
    right: 0;
    top: 0; */
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Style the active link (or home/logo) */
.active {
    background-color: #04AA6D;
    color: white;
}


.font {
    font-family: "Poppins";
}

main {
    padding-top: 3em;

}

footer {
    grid-area: footer;
}

h1 {
    font-family: 'Roboto', sans-serif;
    color: white;
}

.example {
    overflow-x: auto;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}


table {
    width: 300px;
    padding: 5px;


    /* font-family: 'Inter', sans-serif; */
}

th {
    vertical-align: top;
    text-align: left;
    padding-right: 2.5em;

}

td {
    vertical-align: top;
    padding-right: 10px;

}

tr {
    padding-bottom: 15px;
    /* outline: thin solid black; */
}


h4 {
    background-color: #ddd;
    border: none;
    color: black;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 16px;
}

.get {
    background-color: rgb(57, 255, 20);
}

.post {
    background-color: rgb(28, 248, 248);
}

.delete {
    background-color: rgb(255, 87, 51);
}

.put {
    background-color: rgb(250, 237, 39);
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #DFE5F2;
    width: 3em;
    height: 3em;
    background-color: #333;
    color: white;
}

#btn-back-to-top:hover {
    background-color: rgba(221, 217, 217, 0.808);
    color: #333;
}