@charset "utf-8";

/*
   Hello Sandbox VF
   Author: Vasyl Flotskyi
   Date:   11/11/2022   

*/

@import url('https://fonts.googleapis.com/css2?family=Poor+Story&family=Raleway:wght@500&display=swap');
/*
font-family: 'Poor Story', cursive; for H1
font-family: 'Raleway', sans-serif; for other
*/

body {
  width: 100%;
  max-width: 960px;
  margin: 40px auto;
  background-color: aquamarine;
  text-align: center;
  border-radius: 25px;
  box-shadow: inset rgb(53, 21, 0) 0px 0px 35px;
}
h1 {
  font-family: 'Poor Story', cursive;
  font-size: 3.3em;
  font-weight: bold;
  color: darkblue;
  padding-top: 20px;
}
h3 {
  font-family: 'Raleway', sans-serif;
}

div.boxStule {
  display: block;
  margin: 40px; 
  padding: 40px;
  border-radius: 80px 0px;
  border: 3px dotted darkgreen;
  text-align: center;
  background-color: aquamarine;
  box-shadow: white 0px 0px 35px;
}
section {
  width: 80%; 
  margin: auto auto;
  padding: 30px; 
  text-align: left; 
  margin-bottom: 100px;
  background-color: darkcyan;
  border-radius: 20px;
  box-shadow: rgb(53, 21, 0) 0px 0px 10px;
}
aside {
  float: left;
  font-weight: bold;
  margin: 15px 15px;
  /*background-color: grey;*/
}
aside:hover {
  transition: transform 0.8s;
  transform: scale(1.2, 1.3);
}
h2:hover {
  transition: transform 0.8s;
  transform: scale(1.2, 1.3);
}
a:hover {
  color: darkblue;
  text-decoration: none;
}
div:hover {
  transition: transform 0.8s;
  transform: scale(0.9, 0.9);
  font-size: 1.4em;
  box-shadow: rgb(53, 21, 0) 0px 0px 35px;
  border-radius: 0px 80px;
}
p {
  margin: -60px auto;
  padding-bottom: 40px;
}