@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300&display=swap');

body {
    background-color: #252526;
    color: #f3f2e8;
    font-family: 'Mukta', sans-serif;
}

hr {
    color: rgb(40, 40, 40);
    width: 50%;
}

.main {
    text-align: center;
}

.small {
    font-size: 10px;
    filter: opacity(50%);
}

.navbar a {
    text-decoration: none;
    color:#f3f2e8;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 3px;
 }
.navbar a:hover {
    color:rgb(249, 249, 247);
    background-color: #353535;
}
.navbar a.selected {
    border-bottom: #FDEB03 solid 3px;
}

.thing {
    background-color: #1d1d1e;
    margin: auto;
    width: 85%; 
    padding: 10px;
    border-radius: 0.5rem;
    box-shadow: 10px 10px 15px rgb(0 0 0 / 0.5);
    margin-bottom: 3.5rem;
    padding-bottom: 1.5rem;
    border: 3px rgb(40, 40, 40) solid;
}

.thing a {
    color: rgb(36, 91, 230);
    text-decoration: none;
}
.thing a:hover {
    color: rgb(55, 112, 255);
    text-decoration: underline;
}

.info {
    position: relative;
    color: rgb(36, 91, 230);
}

.info a {
    text-decoration: none;
    color: rgb(36, 91, 230);
}