
* {
  margin: 0%;
  padding: 0;
  box-sizing: border-box;
  
}
.activitites{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;

}

video {
  max-height: 75vh;
  object-fit: cover;
  max-width: 100vw;
  min-width: 100vw;

}

.activitites img {
  height: 240px;
  width: 240px;
  object-fit: cover;
}
.card{
  padding: 16px;
    background-color: #ffffff;
  border-radius: 15px;  
}

@font-face {
  font-family: 'Fredoka';
  src: url('fonts/Fredoka-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Fredoka';
  src: url('fonts/Fredoka-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

body {
  color: #333;
  line-height: 1.6;
  font-family: 'Fredoka';
  font-weight: normal;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main{
    flex: 1;
    background-color: #BFCDE0;
}



header {
  background-color: #BFCDE0;
  padding: 0px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: #fff0db 1px solid;

}

.abouttitles {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.abouttitles h1 {
  font-size: 2rem;
}

nav {
  display: flex;
  justify-content: space-around;
  flex: 1;
  max-width: 50vw;
}

nav a{
  text-decoration: none;
}

.hero {
  padding: 80px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  color: #2d1e2f;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
background: #5D5D81;

  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e66a00;
}


footer .container{
 background-color: #ffdab9;
 padding: 16px;
  text-align: left;
  font-size: 0.9rem;
}
.activity1_description{
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem 4rem;
gap: 2rem;
}


.about{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.about .card{
  background-color: transparent !important;
  border: 1px solid #ffffff;
}

.about img{
  width: 200px;
  height: 200px;
  border-radius: 100%;
  object-fit: contain;
}

