@font-face {
  font-family: 'bitter'; 
  src: url('../files/Bitter-SemiBoldItalic.ttf') format('truetype'); 
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container h2 {
	font-family: 'Bitter', Arial, sans-serif;
}
.section-container h3 {
	font-family: 'Bitter', Arial, sans-serif;
}

body {
  background: url("../images/3.jpg") no-repeat center center fixed;
  background-size: cover;
}

header {
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  height: 80px;
}

header nav ul li {
  display: inline-block;
  position: relative;
  background-color: black;
  margin-right: 30px;
}

header nav ul li:last-child {
  margin-right: 0;
}

header nav ul li a {
  display: block;
  padding: 10px;
  color: #94E5F1;
  text-decoration: none;
   font-size: 21px;
    font-weight: bold;
	 letter-spacing: 2px;
}

header nav ul li:hover > a {
  color: black;
}

header nav ul li:hover a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #94E5F1;
}

header nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
}

header nav ul ul li {
  display: block;
}

header nav ul ul li a {
  padding: 10px;
  color: #94E5F1;
}

header nav ul li a:hover,
header nav ul ul li a:hover {
  background-color: #94E5F1;
  color: black;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul li {
  display: inline-block;
  position: relative;
  background-color: black;
}

nav ul li a {
  display: block;
  padding: 10px;
  color: #94E5F1;
  text-decoration: none;
}

nav ul li:hover > a {
  color: black;
}

nav ul li:hover a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #94E5F1;
}

nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
}

nav ul ul li {
  display: block;
}

nav ul ul li a {
  padding: 10px;
  color: #94E5F1;
}

nav ul li a:hover,
nav ul ul li a:hover {
  background-color: #94E5F1;
  color: black;
}

nav ul li:hover > ul {
  display: inherit;
}

footer {
  background-color: #000000;
  color: #94E5F1;
  padding: 10px;
  text-align: center;
  position: flex;
  bottom: 0;
  left: 0;
  width: 100%;  
  height: 12%;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

footer .footer-center {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
}

footer .footer-center a {
  color: #94E5F1;
  text-decoration: none;
  margin: 0 10px;
   font-size: 18px;
}

footer p {
  font-size: 17px;
  opacity: 1;
  color: #94E5F1;
}

footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

footer ul li {
  flex: 1;
  text-align: center;
}

footer ul li:first-child {
  text-align: left;
  margin-right: auto;
}

footer ul li:last-child {
  text-align: right;
  margin-left: auto;
}

footer ul li a {
  color: #94E5F1;
  text-decoration: none;
}

footer ul li:hover > a {
  color: white;
}

footer .copyright {
  max-width: 1200px;
  margin: 0 auto;
  color: white;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  padding: 20px;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #000;
  color: #94E5F1;;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #000999;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #000;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #94E5F1;
  
}

h3 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
   color: #94E5F1;
}

ul {
  margin-bottom: 15px;
   color: #fff;
   font-size: 20px;
}

p {
	 color: #fff;
	 font-size: 20px;
}

li {
	 color: #fff;
	 font-size: 20px;
	 margin-bottom: 10px; 
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.gallery img {
  width: 105%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
   transition: transform 0.5s;
}
.gallery img:hover {
  transform: scale(3.1);
}

p {
  margin-bottom: 15px;
  line-height: 1.5;
}


main {
  padding: 40px 0;
}


.section-container {
  margin-bottom: 30px;
  background-color: #000;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007ACC;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 4px;
 transition: background-color 0.3s ease, border-radius 0.3s ease;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 222px;
}

.button:hover {
  background-color: #000;
  color: #94E5F1;
  border-color: fff; 
  border-radius: 50%;
}
.button1 {
	margin-left: 229px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #007ACC;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 4px;
 transition: background-color 0.3s ease, border-radius 0.3s ease;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button1:hover {
  background-color: #000;
  color: #94E5F1;
  border-color: fff; 
  border-radius: 50%;
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #000;
  color: #94E5F1;;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #000999;
}