
* {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: 0.2s;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background-color: teal;
  color: white;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: teal;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  opacity: 0.5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative; /* To create a stacking context for the pseudo-elements */
}

header {
display: flex;
gap: 40px;
align-items: center;
    background-color: #27ae60; /* Green color */
    color: #fff;
    padding: 1rem;
    text-align: center;
    position: relative; /* To create a stacking context for the pseudo-elements */
border-radius: 0 0 10px 10px;
}

.logo img {
	width: 80px;
height: 80px;
border-radius: 50%;
outline: 2px wheat solid;
outline-offset: 3px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f6b93b;
}

.section {
    padding: 2rem 0;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60; /* Green color */
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
}

address {
    font-style: italic;
    color: #777;
	margin-bottom: 10px;
}

.menu-item {
    margin-bottom: 2rem;
}

.menu-item ul {
    list-style: none;
    padding-left: 1rem;
}

.menu-item ul li {
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: orange; /* Green color */
    color: #fff;
}

/* Button style */
button {
    display: inline-block;
    background-color: orange;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
cursor: pointer;
border: none;
box-shadow: 0 0 5px 5px #00000020;
}

button:hover {
    opacity: 0.8;
}

/* Floating shapes */
.shape {
    position: absolute;
    background-color: teal; /* Green color */
    border-radius: 50%;
	opacity: 0.2;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

/* Floating circle 1 */
.shape.circle1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-name: floatShape;
}

/* Floating circle 2 */
.shape.circle2 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 70%;
    animation-name: floatShape;
}

/* Floating circle 3 */
.shape.circle3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 30%;
    animation-name: floatShape;
}
