body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0; 
}

.image {
    background-image: url("assets/worldmap.png");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    height: 213px;
}

.img_tag{
    display: block;
    margin: 0;
    padding: 0;
}

.img {
    width: 150px;
    height: 125px;
}

h2 {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 50px;
    font-weight: 800;
    color: #32CD32;
    margin-bottom: 0;

}

#img_text {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 15px;
    margin: 0;
}

.inner {
    display: block;
    width: 50%;
    border: 4px solid black;
    border-radius: 15px;
    margin: 50px auto;
    text-align: center;
}

p {
    color: #035A9D;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 30px;
    margin: 30px;
}


#text_area {
    display: block;
    width: auto;
    margin: 0 auto;
    height: 118px;
    padding: 0 10px;
    border: none;
    border-radius: 5px;
    background-color: #EFF0F4;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
    align-items: center;
    color: #333333;
}

.language-options label {
    display: block;
    margin: 20px 200px;
    font-size: 1em;
    text-align: start;
}

.flag {
    position: absolute;
    width: 30px;
    height: 20px;
    margin: 1px 7px;
    border: 1px solid black;
}

button {
    position: relative;
    width: 50%;
    padding: 10px;
    font-size: 1.5em;
    background-color: #035A9D;
    color: #fff;
    border: none;
    cursor: pointer;
    margin: 30px auto;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    transition: color 1s, box-shadow 1s;
    display: inline-block;
    z-index: 1;
    overflow: hidden;
}

button:hover {
    transition-delay: 0s, 1s;
    color: #fff;
    box-shadow:
        0 0 10px #0ef,
        0 0 20px #0ef,
        0 0 40px #0ef,
        0 0 80px #0ef,
        0 0 160px #0ef;
}
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 0;
    height: 100%;
    background: #0ef;
    transform: skewX(35deg);
    z-index: -1;
    transition: 1s;
}
button:hover:before {
    width: 100%;
}

/* Mobile view adjustments */
@media (max-width: 599px) {
    .image {
        flex-direction: row;
        height: auto;
        gap: 7px;
    }

    .img {
        width: 60px;
        height: 45px;
    }

    h2 {
        font-size: 30px;
    }

    #img_text {
        font-size: 12px;
    }

    .inner {
        width: 90%;
        margin: 20px auto;
    }

    p {
        font-size: 20px;
        margin: 15px;
    }

    #text_area {
        width: 90%;
        height: auto;
        font-size: 16px;
    }

    .language-options label {
        margin: 10px 20px;
        font-size: 0.9em;
    }

    .flag {
        width: 25px;
        height: 15px;
        margin: 0 5px;
    }

    button {
        width: 90%;
        font-size: 1.2em;
        margin: 15px auto;
    }
}

/* Tablet view adjustments */
@media (min-width: 600px) and (max-width: 999px) {
    .image {
        flex-direction: row;
        height: 213px;
        gap: 30px;
    }

    .img {
        width: 120px;
        height: 100px;
    }

    h2 {
        font-size: 40px;
    }

    #img_text {
        font-size: 14px;
    }

    .inner {
        width: 70%;
        margin: 30px auto;
    }

    p {
        font-size: 25px;
        margin: 20px;
    }

    #text_area {
        width: 80%;
        height: 100px;
        font-size: 18px;
    }

    .language-options label {
        margin: 15px 50px;
        font-size: 0.95em;
    }

    .flag {
        width: 28px;
        height: 18px;
    }

    button {
        width: 70%;
        font-size: 1.4em;
        margin: 20px auto;
    }
}