* {
    font-family: 'Gabarito', sans-serif;
}

body {
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.baguette {
	width: 5rem;
	height: auto;
}

.container {
    text-align: center;
	margin-right: 2rem;
	margin-left: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #000;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
	font-weight: 500;
}

p {
    font-size: 0.8rem;
    margin-top: 4rem;
	font-weight: 400;
    color: #666;
}
	
.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.button {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 200px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.button img {
    width: auto;
    height: 80px;
    margin-bottom: 16px;
}

.button i {
    font-size: 1.5rem;
    color: #000;
}

.flag {
    position: absolute;
    top: 10px;
    right: 10px;
}

.flag img {
    width: 20px;
    height: auto;
}

@media (max-width: 600px) {
    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
	
	.baguette {
		margin-top: 5rem;
	}
}
