* {
box-sizing: border-box
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  
}

body {
   grid-template-areas:
    "header   header"
    "main  main"
    "footer  footer";
  background-image: url("https://i.ibb.co/y5sXD9F/ricardo-resende-692381-unsplash.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.header {
  grid-area: header;
  background-color: green;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.wiename img {
  border: 5px solid rgba(0,0,0,0.5);
  border-radius: 0px;
  margin: 3px;
  margin-top: 5px;
  margin-left: 5px;
}

.main {
  grid-area: main;
  margin: 10px;
  padding: 10px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  background-color: rgba(144, 238, 144, 0.6);
  font-size: 20px;
  width: auto;
  height: auto;
}

.main img {
  float: right;
  margin-top: 15px;
}

.greta {
  font-size: 25px;
}

.info {
  font-size: 15px;
}

.info a {
  text-decoration: none;
  color: inherit;
}

.info a:hover {
  text-decoration: underline;
}

.main p, .main h1, .main h6, .greta, .main h2, .error {
  text-align: center;
}

.error {
  font-size: 100px;
  color: red;
}

.footer {
  grid-area: footer;
  position: fixed;
  bottom: -8px;
  margin-left: 20px;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer p {
  padding: 5px;
  background-color: rgba(255,255,255,0.3);
}

.footer a:hover {
  text-decoration: underline;
}

.unsplash {
  position: fixed;
  bottom: -8px;
  right: 0px;
  margin-right: 20px;
}

/* Navigation Anfang */

/* Farbe und Border Nav. header */
.navigation1 {
  border-top: 11px groove green;
  /*border-radius: 10px;*/
  margin-right: 10px;
}

.nav {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  color: white;
  font-size: 20px;
}

.navigation1 a {
  text-decoration: none;
  color: inherit;
  padding: 10px;
  display: block;
  
}


.navigation1 a:hover {
  background-color: rgba(0,0,0,0.5);
  color: white;
  transition: all .3s ease-in-out;
}

.helloworld {
  border-right: 3px dotted rgba(0,0,0,1);
  padding-right: 5px;
}
.whatphuc {
  padding-left: 5px;
  padding-right: 5px;
  border-right: 3px dotted rgba(0,0,0,1);
}.test {
  padding-left: 5px;
}
