body{
    margin:0;
    padding:0;
    font-family: 'Clash Display', sans-serif;
}

.HeaderContainer {
    filter: blur(100%);
    background-color: black;
    color:white;
    text-align: center;
    display:grid;
    grid-template-columns: 5fr 1fr 1fr 1fr;
    width:100vw;
    height:12vh;
    position:fixed;
    z-index:5;
    top:0px;
}
.Name {
    display:flex;
    align-self:flex-end;
    font-weight: bold;
    grid-area: 1 / 1/ 1/ 1;
    font-size:5vw;
    text-Align:left;
    color:white;
}

a {
    text-decoration: none;
    color:white;
}

.AboutMe {
    display:flex;
    align-self:flex-end;
    grid-area: 1 / 2/ 1/ 2;
    text-align:center;
    font-size: 2vw;
}
.dropdown {
    display:flex;
    align-self:flex-end;
    position: relative;
    grid-area: 1 / 3/ 1/ 3;
    text-align:center;

}
.dropbtn {
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    padding:0px;
    margin:0px;
    font-family: 'Clash Display', sans-serif;
    font-size:2vw;
}
.dropdown-content {
    display: none;
    position: absolute;
    top:45px;
    background-color: #f9f9f9;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    animation-name: fade;
    animation-duration: 1s;
    animation-timing-function: ease;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align:left;
    animation-name: fade;
    animation-duration: 1s;
    animation-timing-function: ease;
}

@keyframes fade {
    0% {opacity:0%;}
    100% {opacity:100%;}
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color:white;
    color:black;
}

.Contact {
    display:flex;
    align-self:flex-end;
    grid-area: 1 / 4/ 1/ 4;
    text-align:center;
    font-size:2vw;
}

input[type=text], select, textarea {
  width: 100%;
  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: black;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Clash Display', sans-serif;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: white;
  color: black;
}

.container {
  border-radius: 5px;
  border-width:thick;
  border-style:solid;
  border-color:black;
  background-color: white;
  padding: 20px;
  margin-top:11%;
  margin-right:15%;
  width:500px;
  height:auto;
  place-self:end;
}

.Text{
	margin:8%;
	color:black;
	place-self:center;
	font-size:1vw;
    width:50vw;
}

.BIGC{
	display:grid;
	grid-template-columns:repeat(2, minmax(500px,1fr));
	margin:8%;
	align-content:center;
	justify-content:center;
}