* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

.container {
    display: flex;
    width: 100%;
}

.left-block,
.right-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
}

.right-block {
    flex: 1;
    min-height: 80vh;
    background-image: url('/global-v2/app-swinger-couples.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.left-block {
    padding: 20px;
}

.main-image {
    width: 300px;
}

.app-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.language {
    margin-top:80px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.lang-button {
    display: flex;
    align-items: center;
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    color: black;
    border-radius: 20px;
    padding: 10px;
    padding-left: 0px;
    transition: background-color 0.3s ease;
    padding-right:40px;
    background: #eeeeee;
}

.lang-button:hover {
    background: #ffdb02;
}

.language-link {
    color: black;
    padding-left: 15px;
    display:flex;
    align-items: center;
    text-decoration: none;
    width:100%;
}

.titleH1 {
    margin-top:10px;
    padding: 0px 20px;
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:3rem;
    transform: rotate(-6deg);
  --panel: #12141a;
  text-shadow: 2px 3px 0px #12141a;
  ;
    -webkit-text-fill-color:#ffdb02;
   -webkit-text-stroke-width: 2px;
   -webkit-text-stroke-color: #12141a;
   text-transform: uppercase;
    }

    .flag {
        width: 30px;
        border-radius: 3px;
        margin-right:10px;
    
    }

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .left-block
     {
        width: 100%;
        height:100vh;
    }

    .right-block {
       display:none;
    }
    .lang-button {
        font-size: 18px;
    }
    .titleH1 {
        font-size:1.5rem;
        }
    .main-image {
            width: 200px;
    }
    .titleH1 {

      text-shadow: 1px 2px 0px #12141a;

        }
    .language {
        margin-top: 40px;
    }
        
}