/* home page */

* {
   box-sizing: border-box;
   }

html body
   {
   height: 100vh;
   width: 100vw;
   background-color: silver;
   display: flex;
   flex-flow: column;
   }

header
   {
   display: flex;
   justify-content: center;
   }

p.headline
   {
   font-size: 5.25vw;
   font-family: cursive;
   font-weight: bold;
   color: black;
   background-color: silver;
   }

picture
   {
   display: flex;
   height: 33.25vw;
   width: 44.25vw;
   margin-left: 27.875vw;
   margin-right: 27.875vw;
   }

img
   {
   height: 33vw;
   width: 44vw;
   border: double 888 0.125vw;
   }

article
   {
   display: flex;
   justify-content: space-around;
   }

p.statement
   {
   width: 45vw;
   color: black;
   background-color: silver;
   font-size: 1.25vw;
   font-family: arial;
   }

footer
   {
   display: flex;
   justify-content: center;
   height: 1.5vw;
   }

form
    {
   display: inline-block;
   }

button
   {
   display: flex;
   justify-content: center;
   align-items: center;
   border: inset darkorange 0.025vw;
   background-color: orange;
   color: white;
   border-radius: 0.0625vw;
   width: 10.25vw;
   font-size: 1.25vw;
   }

