@charset "UTF-8";

@font-face {
    font-family: 'Gotham-BoldItalic';
    src: url('../font/Gotham-BoldItalic.woff2') format('woff2'),
        url('../font/Gotham-BoldItalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Bold';
    src: url('../font/Gotham-Bold.woff2') format('woff2'),
        url('../font/Gotham-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Book';
    src: url('../font/Gotham-Book.woff2') format('woff2'),
        url('../font/Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body, html {
	overflow: hidden;
    height: 100%;
}

html {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background-color: #fff;
	font-family: sans-serif;
}

*, *:before, *:after {
	box-sizing: inherit;
	outline: none;
}

body {
	background-image: url('../images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    height: 100%;
    margin: 0;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
	font-family: 'Gotham-BoldItalic';
    background-color: white;
    color: black;
    padding: 25px 60px;
    font-size: 1.9em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 20px auto;
    width: 100%;
    margin-top: 100px;
    border-radius: 10px;
}

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

input {
	border: none;
}

.lang_toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
	font-size: 1.25em;
}

.lang_toggle a {
	color: #fff;
	text-decoration: none;
}