*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #DFD3B5;
    font-family: "Mulish", sans-serif;
    color: #322c20;
}

/* TRANSITIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInBlur {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-2px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* FONT */
.mulish-uniquifier{
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
  }
  
.zalando-sans-expanded {
    font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

/* OVERALL CSS */
.container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    text-align: justify;
}

.headname{
    background: #DFD3B5;
    position: sticky;
    top: 0;
    font-family: "Zalando Sans Expanded", sans-serif;
    z-index: 1000; /* Ensures it is in front of other elements */
}

.info{
    color:#956460;
}

.info h3{
    margin-bottom: 10px;
    margin-left: 50vh;
    text-align: right;
}

.activity {
    background-color: #956460;
}

.activity td{
    padding: 10px;
}

.activity p{
    line-height: 1.5;
    margin: 10px 0;
}

a{
    color: #956460;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #826632;
}

a:hover::after {
    transform: scaleX(1);
}
@media (max-width: 1000px) {
    .info h3{
        margin-bottom: 10px;
        margin-left: 10vh;
        text-align: right;
    }
}

@media (max-width: 900px) {
    .activity p{
        font-size: 10px;
    }

    .info h3{
        margin-bottom: 10px;
        text-align: right;
    }
}
