body {
    font-family: Arial, sans-serif;
    background-color: #101020;
    color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 5vh;
}

.intro {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.artist-image {
    width: 32vh;
    height: 32vh;
    border-radius: 75%;
}

.links {
    display: flex;
    flex-direction: column;
    margin: 3vh 0;
}

.link-item {
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    margin-bottom: 1vh;
}

.link-item i {
    font-size: 5vh;
    margin-bottom: 10px;
    margin-right: 15px;
}

.link-item:hover {
    color: #1db954;
}

.bio-section {
    padding: 40px 0;
    background-color: #202030;
    color: #fff;
    text-align: center;
}

.bio-section h2 {
    font-size: 2em;
}

.bio-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 20px;
}

.timeline {
    display: flex;
    flex-direction: column;
    padding: 40px 0;
}

.timeline-entry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.timeline-item {
    border-bottom: 1px dotted #fff;
    padding-bottom: 50px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start; /* Align items to the top */
}

.timeline-item:last-child {
    border-bottom: none; /* Remove the border from the last item */
}

.timeline-date {
    width: 20%;
    font-size: 1.5em;
    font-weight: bold;
    /* text-align: center; */
    margin-top: 5%;
    vertical-align: bottom;
    margin-left: 20%;
    margin-right: -15%;
}

.timeline-image {
    width: 100%; /* Set width to 100% to make it responsive */
    max-width: 300px; /* Optional: set max-width to prevent it from becoming too large */
    height: auto;
    margin-bottom: 20px; /* Add some space between the image and the description */
    margin-top: 5px; /* Add some space between the image and the description */
    border-radius: 1%;
    border: 1px solid #fff;
}

.timeline-content {
    width: 80%;
}

.timeline-description a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    font-weight: 600;
}

.scroll-down {
    position: relative;
    width: 100%;
    text-align: right;
    margin-bottom: 15px;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 10px;
    right: 0;
    display: inline-block;
    color: #fff;
    padding: 10px;
    background: transparent;
    /* cursor: pointer; */
    animation: hoverArrow 1s infinite alternate;
}

.scroll-down-arrow::after {
    content: "";
    border: solid white;
    border-width: 0 0 2px 2px; /* change border-width */
    padding: 10px;
    display: block;
    transform: rotate(-45deg); /* change rotation */
}

#stealth-link {
    color: inherit !important;
    text-decoration: none !important;
}

@keyframes hoverArrow {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}