body {
    font-family: 'Helvetica Neue', sans-serif; /* You can replace with your preferred font */
    background-color: #FFFFFF; /* Swedish Blue */
    color: #000000; /* Swedish Yellow */
    margin: 0;
    padding: 0;
}

header {
	text-align: center;
    background: linear-gradient(to bottom, #0055A4, #FFD100, #FFFFFF);
    padding: 20px;
}

h1 {
    font-size: 36px;
}

#aboutLink {
	position: fixed;
	bottom: 50px;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

img#playButton {
    width: 200px;
    height: 200px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

img#playButton:hover {
    transform: scale(1.1);
}

/**
.overlay {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    width: 0;
    height: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.overlay-content {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    text-align: left;
    font-family: Helvetica, sans-serif;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}*/
.overlay {
	display: none;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 95vh;
	position: fixed;
	width: 80%;
    height: 80%;
    background-color: #1873d3;
    z-index: 1000;
}

.overlay-content {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
	font-size: 16px;
    max-width: 80%;
    text-align: center;
    font-family: 'Optima', sans-serif;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.overlay.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    width: auto;
    height: auto;
}
#audio-player{
		position: fixed;
	bottom: -50px;
}