@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap');

html, body {
    margin: 0;
    padding: 0;
}

@media only screen and (min-width: 1200px) {
    html, body {
        height: 100%;
    }
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #f4f4f4;
    min-height: 100vh;
}

.logo {
    width: 150px;
    margin: 0 auto;
}

.country-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.country-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.flag {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.country-name {
    font-weight: bold;
    font-size: 1.2em;
    color: #333;
}
