@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
body {
    display: flex;
    background: linear-gradient(180deg, #031227 0%, #092348 50%, #031227 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.logo {
    max-width: 280px;
    margin-bottom: 5rem;
}
.container {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
    max-width: 1300px;
    justify-content: center;
}
.region {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.map-container {
    position: relative;
    cursor: pointer;
    width: 335px;
    height: 335px;
}
.map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}
.map-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.region-button {
    background-color: #3573B9;
    padding: 0.8rem 2rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    min-width: 200px;
    border-radius: 25px;
    border: none;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
    cursor: pointer;
}
.region:hover .map-hover {
    opacity: 1;
}
.region:hover .region-button {
    background-color: #FFCA00;
}

@media (max-width: 900px) {

    .container {
        gap: 2rem;
    }
    .map-container {
        width: 250px;
        height: 250px;
    }
    .region-button {
        margin-bottom: 2rem;
    }

}
@media (max-width: 480px) {

    html, body {
        height: auto;
    }
    body {
        justify-content: none;
    }
    .logo {
        max-width: 200px;
    }
    .map-container {
        width: 200px;
        height: 200px;
    }
    .region-button {
        margin-bottom: 2rem;
    }

}
