body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.jumbotron {
    position: relative;
    background-image: url('/media/jumbo.png');
    background-size: cover;
    background-position: center;
    color: #FFF;
    text-align: center;
    padding: 100px 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Darker overlay */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #914AA6;
    padding: 10px 0;
}

h1 {
    font-size: 36px;
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.profile img {
    max-width: 100%;
    border: 5px solid #D55745;
    border-radius: 50%;
}

.description {
    margin-top: 20px;
}

h2 {
    font-size: 24px;
    color: #D55745;
}

.description p {
    font-size: 18px;
    color: #FFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Text shadow for contrast */
}

.twitch-link {
    margin-top: 20px;
}

button {
    background-color: #914AA6;
    color: #FFF;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #683C7D;
}
