body {
    display: flex;
    height: 100vh;
    font-family: Roboto, Verdana, Geneva, Tahoma, sans-serif;
    flex-direction: column;
    margin: 0;
    background-color: black;
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    overflow: visible;
}


.no-webp body {
    background-image: url("background.png");
}


.webp body{
    background-image: url("background.webp");
}


.header,
.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 35px;
    background: rgba(10, 10, 10, 0.5);
    color: lightslategray;
    align-items: center;
    
}


.name {
    font-size: 35px;
    color: lightgray;
    font-weight: 300;
}


ul {
    display: flex;
    list-style: none;
    margin: 0px;
    padding: 8px;
    gap: 24px;
}


@media (max-width: 767px) {
    ul {
        gap: 10px;
    }
    
    .name {
        font-size: 20px;
        padding-left: 4px;
    }
    .header, .footer {
        font-size: 18px;
        padding: 12px 20px;
    }
}


a {
    color: rgb(135, 154, 173);
    text-decoration: none;
}

.unselectable {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.box,
.box-small {
    background-color: rgb(10, 10, 10, 0.6);
    border-radius: 20px;
    padding: 40px 40px 30px;
    color: lightgray;
    font-weight: 300;
    width: 60%;
    margin: auto;
}

.box-small {
    width: 50%;
    padding: 20px;
}

#history-box {
    display:none;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    gap: 20px;
    margin: 40px;
    width: 100%;
}

.status {
    font-size: 40px;
    margin-bottom: 5px;
}

.details {
    font-size: 24px;
    margin-bottom: 20px;
}

.article {
    font-size: 30px;
    margin-bottom: 10px;
}

#top-btn {
    display: none;
    position: fixed;
    padding: 0px;
    top: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgb(255, 255, 255, 0.3);
    color: lightgrey;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
    width: 60px;
    height: 60px;
  }
  