html {
  scroll-behavior: smooth;
}
body {
  font-family: 'DM Serif Display', serif;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: black;
}
h1,h2,h3{
  font-family: 'DM Serif Display', serif;

}
h1{
  
  color: #ffffff;
}
a {
  
  color: #f00;
  text-decoration: none;
  
}

#active,
a:hover {
  
  color: rgb(255, 255, 255);
}



ul {
  list-style-type: none;
}

nav:after,
ul:after,
#big:after,
.box1:after,
.box2:after,
.list:after {
  content: "";
  display: block;
  clear: both;
}

.welcome-text {
  font-size: 2vw;
}

.description {
  color: rgb(0, 0, 0);
  font-size: 1.8vw;
}

nav li {
  float: left;
  margin-left: 50px;
  margin-top: 30px;
  font-size: 0.75vw;
}

footer ul {
  margin: -20px;
  font-size: 0.75rem;
}

footer li {
  float: left;
}

footer li:not(:first-of-type) {
  margin-left: 10px;
}

#wrapper {
  max-width: 1500px;
  margin: 30px auto 0 auto;
  padding: 0 20px;
 
}


nav {
  margin-top: 20px;
  padding-bottom: 10px;
}

#logo {
  width: 111px;
  height: 75px;
  float: left;
}

#logo:hover {
  animation: rotation 10s infinite linear;
}
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: red;
  color: white;
  border: none;
  padding: 15px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
}


@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

#big {
  background-color: #f8f9fb;
}

#left {
  width: 630px;
  float: left;
  
}

#left p {
  font-size: 1.875rem;
  line-height: 2.5rem;
  font-weight: 900;
  margin-top: 170px;
  margin-left: 30px;
  width: 500px;
  text-align: left;
  
}

#left p span {
  color: #f00;
  
}

.fab.fa-instagram {
  font-size: 24px;   /* Set the size of the logo */
  color: #ff0000;    /* Set the color of the logo */
}

.fab.fa-instagram:hover {
  color: #f700008f;    /* Set the color of the logo on hover (Instagram gradient color) */
}


#left a {
  padding: 15px 15px;
  border-radius: 10px;
  margin-left: 30px;
  font-size: 0.75rem;
}

#left a:first-of-type {
  color: #fff;
  background-color: #f00;
}

#left a:hover {
  color: #fff;
  background-color: rgba(255, 0, 0, 0.514);
}

#left a:last-of-type {
  color: none;
  background-color: #f8f9fb;
  margin-left: 10px;
}

#left a:last-of-type:hover {
  color: #fff;
  background-color: none;
}

#right {
  width: 870px;
  float: left;
}

main {
  padding-bottom: 20px;
    

}

main img {
  width: 100%;
  height: auto;
}

main div div p {
  text-align: justify;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  line-height: 1.25rem;
  
}

.list {
  margin-left: -40px;
  
}

.list li {
  float: left;
  font-size: 25px;
  
}

.list li:not(:first-of-type) {
  margin-left: 50px;
  
}

.column {
  width: 30%;
  float: left;
  color: #ffffff;

}


.column:nth-of-type(2) {
  margin-left: 3%;
}

.picture {
  width: 33%;
  float: left;
  margin-left: 3%;
}


.end {
  clear: both;
  height: 20px;
}

.grid {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-gap: 20px;
  color: #fff;

}

strong {
  line-height: 1.875rem;
}

footer {
  margin-left: -20px;
  margin-top: 20px;
  padding-bottom: 20px;
}

.footer p:not(:first-of-type) {
  margin-top: -10px;
}
#route{
  color: #fff;
}
.burger-menu {
  display: none;
}

.burger-menu input[type="checkbox"] {
  display: none;
}

.burger-menu {
  display: none;
  justify-content: space-between;
  align-items: center;
}

.burger-icon {
  display: block;
  width: 25px;
  height: 50px;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  line-height: 25px;
  color: #f00;
  transition: color 0.3s ease; /* Add transition effect for color change */
}
.burger-menu input[type="checkbox"]:checked ~ .burger-icon {
  color: #fff; /* Change the color to white when the checkbox is checked */
}

.burger-menu .list {
  max-height: 0; /* Set initial max-height to 0 */
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  margin-bottom: 10px;
}

@keyframes open-menu {
  0% {
    transform: scaleY(0); /* Start with scaleY(0) */
  }
  100% {
    transform: scaleY(1); /* End with scaleY(1) */
  }
}

@keyframes close-menu {
  0% {
    transform: scaleY(1); /* Start with scaleY(1) */
  }
  100% {
    transform: scaleY(0); /* End with scaleY(0) */
  }
}

.burger-menu input[type="checkbox"]:checked ~ .list {
  display: block;
  animation-name: open-menu; /* Use the open-menu animation when checked */
  max-height: 300px; /* Set a max-height value when the checkbox is checked */
  transition: max-height 0.4s ease-in; /* Add transition */
}

.burger-menu input[type="checkbox"]:not(:checked) ~ .list {
  animation-name: close-menu; /* Use the close-menu animation when not checked */
  max-height: 0; /* Hide the content by setting max-height back to 0 */
}

.burger-menu .list li {
  float: none;
  clear: left;
  font-size: 1rem;
}
.burger-menu.open .list {
  animation-name: open-menu; /* Use the open-menu animation when the burger menu is open */
}

@keyframes open-menu {
  0% {
    transform: scaleY(0); /* Start with scaleY(0) */
  }
  100% {
    transform: scaleY(1); /* End with scaleY(1) */
  }
}

@media (max-width: 1580px) {
  #wrapper {
    max-width: 100%;
    
  }

  #left {
    width: 100%;
    float: none;
    padding-top: 30px;
  }

  #left p {
    margin-top: 0px;
    margin-left: 30px;
    width: 500px;
    
  }

 

  #right {
    width: 100%;
    margin-top: 50px;
    float: none;
    
  }

  .column {
    width: 100%;
    float: none;
  }

  .column:nth-of-type(2) {
    margin-left: 0%;
  }

  .picture {
    width: 100%;
    float: none;
    margin-left: 0%;
  }
  

  .grid {
    display: grid;
    grid-template-columns: 50% 49%;
    grid-gap: 20px;
  }
}

@media (max-width: 580px) {
  #left p {
    width: calc(100% - 40px);
  }
  

  .grid {
    display: block;
  }
  
  a {
    color: #f00;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav{
    justify-content: space-around;
  }
  nav ul {
    list-style-type: none;
    white-space: nowrap;
  }

  nav li {
    display: inline-block;
    margin-right: -11vw; /* adjust this as needed */
    float: none;
    font-size: 0.6rem !important; /* reduce font size */
    margin-top: 15px;

  }
  footer{
    justify-content: space-around;
  }
  footer li{
    font-size: 0.3rem; /* reduce font size */

  }
  .list {
    margin-left: -40px;
  }
  
  .list li {
    float: none;
    clear: left;
    font-size: 1rem;
  }
  .list li:not(:first-of-type) {
    margin-left: 0px;
    
  }
  .burger-menu{
    display: block;
  }
 
  
  
  #logo {
    width: 55.5px;
    height: 37.5px;
    float: left;
  }
}
@media screen and (device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) {
  nav li {
    display: inline-block;
    margin-right: -8vw; /* adjust this as needed */
    float: none;
    font-size: 0.6rem !important; /* reduce font size */
    margin-top: 30px;
    margin-left: 40px;

  }

  
  #logo {
    width: 111px;
    height: 75px;
    float: left;
  }
  nav{
    justify-content: space-between;
  }
}








