body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #141414;
    font-family: 'Geologica', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: center;
}

.logo-top {
/*     margin: 20px 0; */
	margin-top: 40px;
}

.buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

button {
    background-color: black;
    border: 1px solid #B5A56D;
    border-radius: 12px;
    color: #B5A56D;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 240px;
    height: 50px;
    align-self: center;
    cursor: pointer;
    outline: none;
    display: block;
    font-family: 'Geologica', sans-serif;
}

button:hover {
    background-color: #333;
}

.focus_button {
	background-color: rgba(181, 165, 108, 1);
	color: black;
}

.focus_button:hover {
	color: 	#B5A56D;
}

.motto {
    color: #B5A56D;
    margin: 5px 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.copyright {
    color: #B5A56D;
    margin: 5px 0;
    font-size: x-small;
}

.footer img {
    margin-bottom: 0px;
}

.footer {
    margin: 20px 0;
}

a {
	color: #B5A56D;
}

.language-switch {
    position: fixed;
    top: 0;
    right: 0;
    margin: 10px;
    font-size: x-small;
    padding: 5px;
    border: 0px;
    cursor: pointer;
  }
  
  .language-switch a {
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth transition for hover effect */
  }
  .language-switch a:hover {
    color: #897d51; /* Darker shade for hover effect */
  }

@media (min-width: 1024px) {
    .container {
        max-width: 500px;
        margin: auto;
    }
    
    button {
	    margin-top: 20px;
		margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    
    
    button {
	    margin-top: 10px;
		margin-bottom: 10px;
    }
}




