body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    position: relative;
}

.background-image {
    background-image: url('background_image.webp'); /* Replace 'background_image.jpg' with your actual image file */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.name {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.subheading {
    font-size: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.small-text {
    font-size: 0.8rem;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
    .name {
        font-size: 3rem;
    }
    .subheading {
        font-size: 1.5rem;
    }
}



.content-overview-button {
display: inline-block;
background-color: #007bff;
color: white;
text-decoration: none;
padding: 15px 25px;
border-radius: 8px;
font-size: 18px;
font-weight: bold;
margin-top: 20px;
transition: background-color 0.3s ease;
}

.content-overview-button:hover {
background-color: #0056b3;
cursor: pointer;
}
