*{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

body{
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    min-width: 630px;
    background: rgb(199, 198, 198);
    align-items: center;
    justify-content: center;
}
.container{
    width: 80vw;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-self: center;
}
.container h1{
  font-size: 3em;
  color: rgb(89, 0, 172);
  font-weight: bolder;
}
.container p{
    font-size: 1.5em;
    color: rgb(80, 6, 150);
    font-weight: 700; 
  }

.container a{
    display: inline-block;
    border: 2px solid ;
    margin-top:1em;
    padding: .8em;
    text-decoration: none;
    border-radius:25px;
    
}

.container a.home{
   background: rgb(80, 6, 150);
   border: 3px solid  aliceblue;
   color: aliceblue;
   font-weight: bold;
   transition: all .5s;
}

.container a.report{ 
    border: 3px solid  black;
    color: black;
    font-weight: bold;
    transition: all 1s;
 }
 
 .container a:hover{
    border: 4px solid  rgb(80, 6, 150);
    font-size: 1.2em;
    transition: all .5s;
    background:silver;
    color:rgb(80, 6, 150);
 }

.img{
  width: 37em; 
  margin: 0 2em; 
}