
@font-face {
  font-family: 'ArialRounded';
  src: url('./fonts/arialroundedmtbold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.header {
  opacity: 1;
  height: 100%;
  font-size: 50px;
  background-color: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-text {
  font-family: 'ArialRounded';
  font-weight: bold;
  color: rgb(255, 145, 0);
  -webkit-text-stroke: 1px #000000;
    @media screen and (max-width: 750px) {
  -webkit-text-stroke:0px transparent;
  text-shadow:none;

    -webkit-text-size-adjust: 100%;
  }
}

.sub-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: italic;
  -webkit-text-stroke: 0.2px #000000;
  color: #ffffff;

  @media screen and (max-width: 750px) {
  -webkit-text-stroke:0px transparent;
  text-shadow:none;
  }
}


.content .video {
  width: 50%;
  aspect-ratio: 16 / 9; /* Maintains a 16:9 ratio */
  overflow: hidden;
  border: 5px solid #4e74a248;
  border-radius: 5px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  
  @media screen and (max-width: 750px) {
    width:100%;
  }
}

.content .video iframe {
  width: 100%;
  height: 100%;
  border: none;
}



a {
  color: #008cff;
  text-decoration-color: #008cff;
    
}

b {
  color: #008cff;
  font-size: x-large;

  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: #008cff;
    
}

div.content .text {

  font-family: 'Roboto', sans-serif;
  font-size: larger;
  width: 90%;
  text-shadow: 0.3px 0.3px 0.3px #000000;
  color: #ffffff;
  margin-left: 5%;

  


  -webkit-text-stroke: 0.05px #000000;
  @media screen and (max-width: 750px) {
  -webkit-text-stroke:0px transparent;
  text-shadow:none;
    -webkit-text-size-adjust: 100%;
  }
}

div.content .bold {

  font-family: 'Lato', sans-serif;
  font-size: x-large;
  font-weight: bold;
  width: 90%;
  text-shadow: 0.3px 0.3px 0.3px #000000;
  color: #ffffff;
  margin-left: 5%;
  


  -webkit-text-stroke: 0.05px #000000;
  @media screen and (max-width: 750px) {
  -webkit-text-stroke:0px transparent;
  text-shadow:none;
    -webkit-text-size-adjust: 100%;
  }
}


div.content .text .bold {
  margin-left: 0%;
  margin-bottom: 0%;
  font-size: xx-large;
}

div.content .normal {
  margin:0;
}

div.content .title {
  font-family: 'ArialRounded';
  font-size: 45px;
  font-weight: bold;
  color: #ffb300;
  -webkit-text-stroke: 1px #000000;
  margin-bottom: 0px;
  text-align: center; /* optional — will center the flex container overall */
  
  display: flex;
  justify-content: center; /* centers both text + icons together */
  align-items: center;
  gap: 10px; /* space between title and icons */

    @media screen and (max-width: 750px) {
    -webkit-text-size-adjust: 100%;
  }
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s;
  background-color: rgba(171, 171, 171, 0.2);
  border-radius: 8px;
}

.social-icons a img:hover {
  transform: scale(1.1);
}


div.content p.centered {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  text-shadow: 0.3px 0.3px 0.3px #000000;
  color: #ffffff;
  -webkit-text-stroke: 0.05px #000000;

  @media screen and (max-width: 750px) {
  -webkit-text-stroke:0px transparent;
  text-shadow:none;

    -webkit-text-size-adjust: 100%;
  }
}


.image {
  display: flex;
  justify-content: space-between; 
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 20px;
  
}

.image img {
  width: 30%; 
  height: auto;
  border: 2px solid #4e74a248; 
  border-radius: 5px; 
}

@media (max-width: 768px) {
  .image {
    flex-direction: column; 
    align-items: center;
    margin-left: 10%;
    margin-right: 10%;
  }

  .image img {
    width: 80%; 
    margin-bottom: 10px; 
  }
}