/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  color: black;
  font-family: Verdana;
  
  text-align: center;
  
  padding: 10px;
  margin: 3px;
  
  background-color: #001514;
  background-image: url("./asfalt-light.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */  
}

#aboutme {
  border-style: solid;
  border-width: medium;
  border-color: #FFFFFF;
}

button {
  border-radius: 0;
  background-color: #0BD80B;
  font-size: large;
}

h1 {
 font-size: 40px; 
}

#blog {
  width: 80%;
  display: inline-block;
  
  border-style: solid;
  border-width: 5px;
  border-color: #E952DE;
  
  outline-style: solid;
  outline-width: 2px;
  outline-color: #E952DE;
  
  background-color: #FFA0FD;
  border-radius: 10px;
}

#topholder {
  text-align: center;  
}

#topbar {
  background-color: #FFA0FD;
  
  text-align: center;
  display: inline-block;
  
  border-style: solid;
  border-width: 5px;
  border-color: #E952DE;
  
  outline-style: solid;
  outline-width: 2px;
  outline-color: #E952DE;
}

#pannel {
  border-style: solid;
  border-width: 5px;
  border-color: #E952DE;
  
  outline-style: solid;
  outline-width: 2px;
  outline-color: #E952DE;
  
  background-color: #FFA0FD;
  border-radius: 10px;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 70%;
  justify-items: center;
  margin: 0 auto;
}