@charset "utf-8";

/*
   Design Project 1 - Concept Work VF 
   Author: Vasyl Flotskyi
   Date:   11/11/2022   

*/

@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Noto+Sans&display=swap');

body {
  padding: 10px;
  background: white;
  margin: 0 auto; 
  min-width: 768px;
  max-width: 1024px;
  font-family: "Noto Sans"; 
  font-size: 1.6em; 
  line-height: 1.9em
}
.whiteBorder {
  padding: 10px;
  background: white;
}
.blackBorder {
  padding: 10px;
  background: black;
}
main {
  background-color: black;
}
h1, h2 {
  font-family: 'Luckiest Guy'; 
  font-size: 2em;
}
img {
  width: 50%; 
  margin-left: 36px;
}
#left {
  float: left;
  margin-left: 0;
  margin-right: 36px;
}
#right {
  float: right;
}
.cover {
  display: grid;
  min-height: 550px;
  place-items: end center;
  padding: 20px;
  padding-top: 100px;
  background-image: url(img/LP-white.png); 
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}
.panel { 
  background-color: white; 
}
.style {
  padding: 72px;
}
#about p {
  font-weight: bold;
}
#inspiration {
  background-color: black;
  color: white;
}
#tragedy p {
  font-weight: bold;
}
.over {
  background-color: rgba(255,255,255,0.5); 
  border-radius: 10px;
  padding: 20px;
  width: 60%;
  text-align: center;
  margin: 30px;
}
a {
  text-decoration: none;
  font-weight: bold;
  color: white;
  letter-spacing: 5px;
  padding: 15px;
  text-shadow: 
    -2px 0px 2px black, 
     2px 0px 2px black,
     0px 2px 2px black, 
     0px -2px 2px black;
}
.clearStyle {
  clear: both;
}