body {
    background-image: url('./images/Dark-Smiles-AC.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	background-attachment: fixed;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
    font-size: 16px;
    text-align: center;
    background-color: #f5f8f0;
    color: #000000;
}
.available-text {
    margin: 0px;
    font-size: 14px;
    letter-spacing: 1.56px;
    color: #000;
    text-transform: uppercase;
    opacity: 1;
    border: 3px solid #000;
    padding: 0.5vw 1vw;
    line-height: 1;
}
  .container {
    display: flex; /* Use flexbox to handle the layout */
    height: auto;
	padding-top: 150px;
	padding-bottom: 150px;
  }
  /* Style for each div to fill half the width */
  .half {
    flex: 1; /* Each div takes equal space */
    background-color: #f8f9fa; /* Light grey background */
    display: grid;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    text-align: justify;  
  }
  /* Background colors for demonstration */
  .left {
    background-color: #477076; /* Blue */
    color: #fff; /* White text color */
	padding-left: 10vh;
	padding-right: 10vh;
	padding-bottom: 10vh;
	height: auto;  
  }
  .right {
    background-color: #000;
	background-image: url('./images/Bio_Pic.jpg');
	background-position: center;
    color: white; /* White text color */
	padding-left: 10vh;
	padding-right: 10vh;
	padding-bottom: 10vh;
  }
a {
    text-decoration: none; /* Removes underline from links */
	color: teal;
}
a:hover {
    opacity: 0.5;
}

/* Mobile background */
@media only screen and (max-width: 767px) {
    body {
        background-image: url('./images/Dark-Smiles-AC.gif');
		justify-content: flex-start;
    }
	.bottom-left-div, .bottom-right-div {
		display: block;
        position: static;
        width: 100%;
        padding: 20px; /* Adjust padding for better touch targets */
		top: 700px;
        text-align: center; /* Center text for better readability */
        background-color: rgba(0, 0, 0, 0.0); /* Keep semi-transparent background */
        margin-bottom: 500px; /* Space between stacked divs */
    }
	.available-text {
	padding: 20px;
    font-size: 25px;
    letter-spacing: 1.56px;
    color: #FFFFFF;
	background-color: rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    opacity: 1;
    border: 3px solid #fff;
    line-height: 1;
}
	#home .spotify {
	min-width: 100%;
	
}
	.container {
        display: block; /* Stack the divs */
        padding: 0;
		height: auto;
		padding-top: 150px;
    }

    .half {
        width: 90%; /* Ensure the divs take up full width */
        padding: 0; /* Adjust padding for better spacing */
    }

    .left {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 0;
    }
	.right {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 0;
		height: 700px;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.0);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

#home {
    padding-top: 50px; /* Space from the top of the screen */
}

#home .spotify {
	max-width: 50%;
	
}

#about {
    background-color: rgba(0, 0, 0, 1.0);
    width: 100%;
}

.logo-container {
    position: absolute;
    top: 18px;
    width: 100%;
    text-align: center;
    max-width: 100%;
	padding-top: 20px;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 150px; /* Adjust as needed */
}	
		
.social-links {
    position: relative;
    top: 130px;
	right: 0;
}

nav ul {
    background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
    list-style: none;
    margin: 0;
    padding-top: 10px;
	padding-bottom: 10px;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
	font-family: myFirstFont;
	font-size: 25px;
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
}

nav ul li a:hover {
    opacity: 0.5; /* Change opacity on hover */
}

main {
    padding-top: 80px; /* Space for fixed header */
}

section {
    padding: 60px 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 10px;
    vertical-align: top;
}

table td img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bottom-left-div, .bottom-right-div {
    position: absolute;
    bottom: 50px;
    width: 400px; /* Adjust as needed */
    background-color: rgba(0, 0, 0, 0.0);
    color: #fff;
    text-align: center;
    padding: 10px;
    z-index: 1000; /* Ensure it's above other content */
}

.bottom-left-div {
    left: 0;
}

.bottom-right-div {
    right: 0;
}

footer {
    padding: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    bottom: 0;
	color: #fff;
}
@font-face {
font-family: myFirstFont;
src: url('fonts/BebasNeue.otf'),
     url('fonts/BebasNeue.otf'); /* IE9 */
}