/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #F4C63F;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background: #F4C63F;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.logo img {
    max-width: 100%;
    height: auto;
    width: 250px;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-top: 10px;
}

.flag {
    font-size: 24px;
    margin-left: 5px;
}

.footer {
    background: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
}

.footer p {
    color: green;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
    .logo img {
        width: 200px;
    }
    h2 {
        font-size: 20px;
    }
}
