html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

:root {
    --primary-color: #000000;
}

body {
    margin-bottom: 60px;
	font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.center {
    text-decoration: none;
    color: black;
}

.header {
    text-align: center;
    justify-content: center;
    position: center;
    background-color: white;
    border: none;
	border-radius: 25px;
	width: 70%;
	margin: auto;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.text-center {
    /* background-color: rgba(255, 255, 255, 0.85); */
    border: none;
	border-radius: 25px;
	justify-content: center;
	text-align: center;
	margin: auto;
	width: 70%;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.toggle-container {
    position: absolute;
    top: 10px;
    right: 5px;
    background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
    padding: 5px;
    border-radius: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.toggle-container p {
	font-size: 16px;
	font-weight: bold;
	text-decoration: underline;
}

.slider {
    position: relative;
    width: 50px;
    height: 24px;
    background-color: #ccc;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.2s;
	margin-bottom: 5px;
}
.slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 1px;
    bottom: 1px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.2s;
}

.toggle-container label {
    margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + .slider {
    background-color: #4CAF50;
}

input[type="checkbox"]:checked + .slider::before {
    transform: translateX(26px);
}

.linkimages {
    display: inline-block;
    padding: 1px;
    align-items: center; /* Vertically center align items within the container */
    justify-content: center; /* Center align items horizontally */
}

.linkimages.box-shadow {
    box-shadow: 0 0 10px gray;
    border-radius: 20px;
}

.linkimages:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px gray;
	border-radius: 20px;
}

.images-container {
    font-size: 0;
    display: flex;
    align-items: center; /* Vertically center align items within the container */
    justify-content: center; /* Center align items horizontally */
	text-align: center;
    column-gap: 25px;
	row-gap: 10px;
    padding: 4px;
    border-radius: 0px;
	width: 100%;              /* Set the container width to 70% of its parent */
    margin: 0 auto;          /* Center the container itself */
    flex-wrap: wrap;         /* Allow items to wrap when they overflow */
    box-sizing: border-box;  /* Ensure padding is included within the width */
}

.linkimages.large {
    transform: scale(1.5);
    margin: 20px; /* Adjust spacing for scaled elements */
}

.linkimages.large:hover {
    transform: scale(1.7);
    box-shadow: 0 0 10px gray;
	border-radius: 20px;
}

.footer {
    background-color: white;
}

button {
    /* background-image: linear-gradient(#FFFF00, #EDC001);
    border: none;
    border-radius: 4px; */
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2), 0 2px 4px 0 rgba(0,0,0,0.19);
	border: none;
    border-radius: 25px;
    font-size: 24px;
    font: bold;
    padding: 10px;
    transition: all 0.5s;
    cursor: pointer;
	font-weight: bold;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

button:hover {
    background-color: rgba(215, 255, 255, 0.9);
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

.dropdown {
    position: relative;
    display: inline-block; /* Keep the dropdown inline */
}

.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    z-index: 999;
    background-color: white;
    min-width: 200px;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
}

/* Dropdown appears on the right by default */
.dropdown-right {
    left: 0%;
}

/* Dropdown appears on the left */
.dropdown-left {
    right: 0%;
}

/* Style for the dropdown items */
.dropdown-content a {
    display: block; /* Make each item a block element */
    margin-right: 5px;
    margin-left: 5px;
}

/* Style for hovering over images */
.dropdown-content a img:hover {
    transform: scale(1.2);
}

.scroll-left {
    height: 50px;
    background: red;
    color: white;
    font-weight: bold;
    overflow: hidden;
    position: relative;
	border-radius: 25px;
	font-size: 24px;
	line-height: 50px;
    text-align: center;
	text-decoration: none;
	color: white;
}

.scroll-left p {
	font-size: 24px;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;
	text-decoration: none;
	color: black;
    /* transform: translateX(100%);
    animation: scroll-left 20s linear infinite; */
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.cursor {
    cursor: pointer;
}

audio::-webkit-media-controls-panel {
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0px 8px 32px rgba(0, 0, 0, 1);
}

audio::-webkit-media-controls-play-button {
	box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);
	border-radius: 50%;
}

audio::-webkit-media-controls-mute-button {
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.sidebar {
  width: 200px;
  background-color: #f4f4f4;
  padding: 20px;
  border-right: 1px solid #ccc;
}

.sidebar button {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  cursor: pointer;
}

.content {
  flex-grow: 1;
  padding: 20px;
  text-align: center;
}

/* Styling for the icons (using text icons/emojis here) */
.icon {
  font-size: 50px;
  margin: 10px;
}