body {
    color: white;
    font-family: 'Courier', monospace;
    margin: 20px;
    background-color: black;
}

dt {
    margin-top: 15px;
}

a:link, a:visited {
    color: aqua;
}
a:hover {
    color: aquamarine;
}

ul.list {
    margin-top: 5px;
    padding-left: 0;
}

li {
    line-height: 25px;
    position: relative;
}

p {
    margin: 0.2em 0;
}

span.date {
    font-size: small;
    color: darkgray;
}

span.user {
    font-size: small;
    color: #9e9e9e;
}

span.email {
    color: lightgray;
}

.description {
    padding: 10px 10px;
    width: 60%;
    border-radius: 5px;
    color: lightgray;
}

.product-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #333;
    padding: 0 10px;
    width: 60%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-link:hover + .date + .product-details,
.product-details:hover {
    max-height: 100px; 
    padding: 10px;
}

#name-container {
    display: flex;
    align-items: baseline;
}

.falling-letter {
    opacity: 0;
    position: relative;
    animation: fall 0.5s forwards;
}

@keyframes fall {
    0% {
        top: -50px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}
.resume-button-container {
    user-select: none;
    text-align: center;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    color: lightgray;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.resume-button-container:hover {
    background-color: aquamarine;
    color: black;
}

.visits-count {
    user-select: none;
    text-align: center;
    font-size: 12px;
    color: lightgray;
    position: fixed;
    padding: 8px 12px;
    bottom: 10px;
    right: 10px;
}