body{
    margin:0;
    padding:0;
    font-family: 'Clash Display', sans-serif;
}

.Header{
    min-height:10vh;
    max-height:12vh;
}

.HeaderContainer {
    filter: blur(100%);
    background-color: black;
    color:white;
    text-align: center;
    display:grid;
    grid-template-columns: 5fr 1fr 1fr 1fr;
    width:100vw;
    min-height:10vh;
    max-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;
    background-color: #f9f9f9;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    font-size:1em;
    animation-name: fade;
    animation-duration: 1s;
    animation-timing-function: ease;
}
.dropdown-content a {
    color: black;
    padding:5px;
    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;
}

.MainContainer {
    display: flex;
    flex-wrap: wrap;
    width:98vw;
    align-items: center;
    justify-content: center;
    z-index:1;
}

.IntroText {
    width:70%;
    color: black;
    text-align:center;
    font-size:1.5em;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width:440px){
.Imagecontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  } 
  img { 
  width:60vw;
  height: auto;
  animation-name: popup;
  animation-duration: 2s;
  animation-timing-function: ease;
  }
}

.Imagecontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 80vw;
}

img {
    aspect-ratio:0.85;
    width:35vw;
    height: auto;
    animation-name: popup;
    animation-duration: 2s;
    animation-timing-function: ease;
}

@keyframes popup{
    0% {transform: translateY(25%); opacity:0%;}
    100% {transform: scale(1); opacity:100%;}
}
.Footer{
  font-size:1vw;
}

.car{
    overflow: hidden;
}