/* Simple Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Base font size */
    line-height: 1.5;
}

body {
    display: flex;
    margin: 0;
    color: #1d3f4e !important;
    font-family: Jost, sans-serif !important;
    flex-direction: column;
}
footer {
    background-color: #f63b1b;
    bottom: 0;
    color: #fff;
}
@font-face {
    font-family: Jost, sans-serif;
    src: url(../fonts/Jost-Regular.ttf);
    src: url(../fonts/Jost-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}
/* Container for overlay content */
.overlay-content {
    top: 50%; 
    left: 20%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.85); /* Semi-transparent background */
    padding: 2rem;
    max-width: 500px;

}

/* Logo styling */
.logo img {
    width: 80px; /* Adjust size as needed */
    margin-bottom: 1rem;
}

/* Text styling */
.text-content h1 {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: 48px;
    text-align: left;
}

.change-title {
    font-size: 2rem;
    color: #000; /* Black */
}

.music-title {
    font-size: 2rem;
    color: #444; /* Slightly gray */
}

/* Make the section position relative for absolute positioning */
.hero {
    position: relative;
    overflow: hidden;
}

/* do not remove */
.logo {
    background-color: #07A3DC;
}
/* do not remove */
/* other css */
/* Blue Logo Section */
.logo-container {
    background-color: #07A3DC;
}

header {
    background: url(../images/mufo-tanzania-hero.png) no-repeat center center;
    background-size: cover;
    max-height: 350px;
    width: 100%;
}