@charset "utf-8";
/* CSS Document */
html, body, h1, p, ul {
    margin: 0px;
    padding: 0px;
}

html, body {
    height: 10vh;
}

html {
  width: 100%;
  height: 100%;
  background-image: url("../../project01_root/images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
}

*, *:before, *:after {
    box-sizing: inherit;
}
	
h1{ 
	Text-align: center;
	font-size: 9rem;
	margin-top: -5px;
	color: #e55c7b;
	font-family: 'MS UI Gothic';
}
ul {
list-style-type: none;
	text-align: center;
    list-style-image: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

ul li {
	display: block;
	padding-top: 10px;

}

ul li {
	padding-right: 30px;
}

ul li a {
	display: justify;
	justify-content: center;
    align-items: center;
	color: #c4c3c0;
	text-decoration: none;
	font-family: 'Bebas';
	height: 10px;
}
	@media screen and (min-width: 701px) {
  ul li a {
    font-size: 4vw;
  }
}

@media screen and (max-width: 700px) {
  ul li a {
    font-size: 40px;
  }

}
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #e55c7b;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #08B2E3;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #1D1D1D;
  padding: 20px;
  margin-top: 3%;
  color: #e55c7b;
  font-family: 'Bebas';
}

/* background */
body {
  background-image: url("images/Project01_Background_4.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size:cover;
  background-position: center; 
}  








@font-face{ 
font-family: 'MS UI Gothic';
font-weight: 100;
font-style: normal;
}
@font-face{ 
font-family: 'Bebas';
font-weight: 100;
font-style: normal;
}

