body{
    margin:0;
    padding:0;
    background-color:darkslategray;
    font-family: 'Clash Display', sans-serif;
}
.HeaderContainer {
    background-color: black;
    color:white;
    text-align: center;
    display:grid;
    grid-template-columns: 5fr 1fr 1fr 1fr;
    width:100vw;
    height:10vh;
    position:fixed;
    z-index:5;
}
.Name {
    font-weight: bold;
    grid-area: 1 / 1/ 1/ 1;
    font-size:5vw;
    text-Align:left;
    border: white;
    border-width: 2px;
    border-style: solid;
}
.AboutMe {
    grid-area: 1 / 2/ 1/ 2;
    text-align:center;
    font-size: 2vw;
    border: white;
    border-width: 2px;
    border-style: solid;
}
.dropdown {
    position: relative;
    grid-area: 1 / 3/ 1/ 3;
    text-align:center;
    border: white;
    border-width: 2px;
    border-style: solid;

}
.dropbtn {
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    padding:0px;
    margin:0px;
    width:100%;
    height:100%;
    font-family: 'Clash Display', sans-serif;
    font-size:2vw;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    background-color:white;
    color:black;
}
.Contact {
    grid-area: 1 / 4/ 1/ 4;
    text-align:center;
    font-size:2vw;
    border: white;
    border-width: 2px;
    border-style: solid;
}

.MainContainer {
    display:grid;
    grid-template-areas:
    "header header"
    "imgs image"
    "footer footer";
    width:100vw;
    padding:20px;
    margin:0px;
    animation-name: Animated;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    border: white;
    border-width: 2px;
    border-style: solid;
    z-index:1;
}

@keyframes Animated{
    0% {opacity:0%;}
    100% {opacity:100%;}
}

.MainContainer div.IntroText {
    grid-area:header;
    margin:15%;
    max-width:100vw;
    min-width:20vw;
    color: white;
    place-self: center;
    text-align:center;
    font-size:10vw;
    border: white;
    border-width: 2px;
    border-style: solid;
}

.Maincontainer div.Images {
    grid-area: header;
    place-self:center;
    border: white;
    border-width: 2px;
    border-style: solid;
}

img {
    max-width:500px;
    min-width:200px;
    height: auto;
    border: white;
    border-width: 2px;
    border-style: solid;
}

.car{
    position:absolute;
    z-index:0;
    left: 10px;
}

.coke{
    position:absolute;
    z-index:0;
    left: 10px;
}

.car{
    position:absolute;
    z-index:0;
    right: 10px;
}

.cypher{
    position:absolute;
    z-index:0;
    left: 10px;
    bottom: 10px;
}

.ryu{
    position:absolute;
    z-index:0;
    bottom: 10px;
}