@charset "UTF-8";
/* CSS Document */

*{
	margin: 0px;
	padding: 0px;
}

body{
	font-family: "acumin-pro-semi-condensed", sans-serif;
    font-weight: 400;
    font-style: italic;
	margin: 5px;
}

.container{
	
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

section{
	display: flex;
	flex-direction: column;
	background-color: #0111FF;
	width: 320px;
	padding: 4px;
	
}

section p{
	color: white;
}

section a{
	display: flex;
	background-color: white;
	justify-content: center;
	padding: 10px 0px;
	text-decoration: none;
	color: black;
	transition: 0.3s;
}

section a:hover{
	background-color: black;
	color: white;
}

a{
	user-select: none;
}

video{
	margin: 4px 0px;
}
