*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	font-family: 'Source Code Pro', monospace;
	background: url('images/ouppy.jpg');
	background-size: 20vw 10vh;
}

input,
button,
textarea,
select {
	font: inherit;
}

a {
	text-decoration: none;
	color: black;
}

.container {
	background: white;
	width: 60vw;
	height: 40vh;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.title {
	font-size: 2rem;
	margin-top: 0.25rem;
}

.enter {
	padding: 10px;
	border: 2px solid black;
}

.enter:hover {
	color: green;
	border-color: green;
}

.imgLinks {
	width: 100%;
	margin-bottom: 0.5rem;
	display: flex;
	justify-content: space-evenly;
}

.imgLink {
	width: 30px;
	height: 30px;
}

.imgLink img {
	width: 30px;
	height: 30px;
}

.imgLink img:hover {
	opacity: 50%;
}

@media screen and (min-width: 700px) {
	body {
		background-size: 10vw 10vh;
	}

	.container {
		width: 40vw;
	}
}

@media screen and (min-width: 1200px) {
	.imgLinks {
		max-width: 60%;
	}
}

@media screen and (min-height: 600px) {
	.title {
		margin-top: 2rem;
	}

	.imgLinks {
		margin-bottom: 2rem;
	}
}
