/* 
 * FONTS
*/
@font-face {
    font-family: 'Summeron';
    src: url('/fonts/summeron.ttf');
}
@font-face {
    font-family: 'Cocogoose';
    src: url('/fonts/Cocogoose.ttf');
}




/* 
 * BASICS
*/
* {
    margin: 0;
    padding: 0;
    font-family: Verdana;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none
}
body {
  display: flex;
  align-items: center;
  justify-content: center;  
  min-height: 100vh;
  position: relative;
}




/* 
 * VIDEO + LOGO
*/
.full-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}
.full-screen video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.content {
  display: flex;
  align-content: center;
  justify-content: center;
}
.content img {
  width: 600px;
}
@media only screen and (max-width: 720px) {
    .content img {
    width: 60%;
    }
}    




/* 
 * Socials
*/
.socials {
    position: fixed;
    bottom: 20px;
    display: flex;
}
.socials li {
    display: inline;
    margin-right: 15px;
    margin-left: 15px; 
}
.socials span::hover {
    cursor: pointer;
}
@media only screen and (max-width: 400px) {
    .socials li {
        margin-right: 5px;
        margin-left: 5px;
    }
} 




/* 
 * EMAIL
*/
#emailbox {    
	max-width: 700px;
    position: fixed;
	display: none;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #fff;
	box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
    padding: 25px;
}
.right{
	padding: 25px;
}
h2{
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

h2:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #FC1661;
}

.field{
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
}

.field:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

textarea{
	min-height: 200px;
    min-width: 400px;
}

.btn{
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #FC1661;
	color: #fff;
	font-size: 1.1rem;
	border: none;
	outline: none;
	cursor: pointer;
	transition: .3s;
}

.socials ul li {
    cursor: pointer;
}

#submit:hover{
    background-color: #FF8647;
}

.field:focus{
    border: 2px solid rgba(30,85,250,0.47);
    background-color: #fff;
}

.topright {
    position: absolute;
    top: 0;
    right: 0;
}