*{
   box-sizing: border-box;
}

body {
   background-color: black;
}

.header {
   width: 100%;
    height: fit-content;
    padding: 30px;
    text-align: center;
}

.header img {
   width: 90%;
}

.wrapper {
   width: 70%;
   margin: auto;
   height: 500px;
}

.choices {
   width: 100%;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  height: fit-content;
  
}


.flaglink img {
   width: 200px;
   height: auto;
   border-radius: 50%;
   cursor: pointer;
   transition: transform 0.3s ease;
}

.flaglink:hover img {
   transform: scale(1.1);
}

.video {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.video video {
    width: 50%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
    width: 90%;
    margin: auto;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}



.backbutton img {
    width: 120px;
    height: auto;
    display: block;
    margin: 20px auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.backbutton img:hover {
    transform: scale(1.1);
}