@import url('https://fonts.googleapis.com/css2?family=Shrikhand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://kit-pro.fontawesome.com/releases/v5.15.1/css/pro.min.css');
:root {
    --black: #000100;
    --blue:  #f93;
    --gray: #191C25;
    --dark-blue:#0099cc;
    --white:#a6a6a6;
}
html{
    font-size: 62.5%;
}
body{
    background-color: #171a1c;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
nav ::-webkit-scrollbar{
    width: 0;
}
::-webkit-scrollbar{
    width: 0.5rem;
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(transparent,var(--blue));
    border-radius: 0.6rem;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 5rem;
    z-index: 99999;
    overflow: hidden;
    border-bottom: 0.2rem solid;
    box-shadow: 0.1rem 0.1rem 0.7rem var(--black);
    background: var(--gray);
    display: flex;
    justify-content: center;
}
h1{
    position: relative;
    top: -1.9rem;
    text-align: center;
    font-family: Shrikhand;
    font-size: 2.8rem;
    transform: scaleY(1.5);
    letter-spacing: 0.3rem;
    color: var(--blue);
    width: 50rem;
}
main,
footer {
    position: relative;
    top: 9rem;
    display: flex;
    flex-direction: column;
}
hr {
    border: 0;
    height: 0.2rem;
    width: 28rem;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #5d6889, rgba(0, 0, 0, 0));
}
.options {
    width: 90%;
    height: auto !important;
    background-color: var(--gray);
    border-radius: 1rem;
    box-shadow: 0.1rem 0.1rem 0.7rem var(--black);
    overflow: hidden;
    align-self: center;
    display: flex;
    flex-direction: column;
}
.copy {
    font-size: 1.5rem;
    font-family: Shrikhand;
    color: #5d6889;
    font-weight: bold;
    letter-spacing: 0.2rem;
    cursor: default;
    text-align: center;
}
.options button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}
.options button i {
    position: relative;
    top: -0.6rem;
    font-size: 2.3rem;
    color: var(--white);
    padding: 0.3rem 0;
}
th {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}
@media screen and (max-width: 769px){
    html{
        font-size: 55%;
    }
    header{
        height: 6.5rem;
    }
    h1{
        position: relative;
        top: 0.2rem;
        font-size: 2.3rem;
        width: 37rem;
    }
    main {
        position: relative;
        top: 10rem;
    }
}