body
  {
    background: linear-gradient(180deg, #09f, #6ef, #dff, white, #fd9, #f95, #930);
    background-color: #386;
    margin:0px;
    font-family:arial;
  }

header
  {
    background: linear-gradient(180deg, white, #fd9, #f95, #930);
    background-color:white;
    border-bottom:solid;
    padding:20px 60px 30px;
  }

h1 {text-align:center;}

#mobiletitle
    {
      background: transparent;
    }

header a, #skip, #top
  {
    background: linear-gradient(0deg, #03b, #09f, #6ef, white);
    border: solid black;
    padding:15px 20px;
    background-color: #09f;
    font-weight:bold;
    width: 15%;
    text-align:center;
    text-decoration:none;
    color:black;
    box-shadow: 3px 3px 0px maroon;
  }

header a:hover, #skip:hover, #top:hover
  {
    background: linear-gradient(0deg, #09f, #6ef, #dff, white);
    background-color: #6ef;
  }

#navi label, #mobile 
  {
    display:none;
  }

.textbox, footer
  {
    background-color:white;
    border:double 6px;
    padding:10px 30px 30px;
    margin: 30px;
  }

#skip
  {
   position:absolute;
	 left: -1000px;
  }

#skip:focus
	{
    position:static;
    width:auto;
    height:auto;
	}

#main, #webpages, #renders
{
  scroll-margin-top:30px;
}

#contact
{
  scroll-margin-top:185px;
}

legend, label
  {
    font-weight:bold;
  }

.container
{
  display:flex;
	flex-wrap:wrap;
	justify-content: space-around;
  
}
.card
{
  display:flex;
	width: 25%;
  border: double;
  padding: 1rem;
  margin: 1rem;
  justify-content:center;
  flex-direction:column;
}

.card a
{
  font-weight:bold;
  text-align:center;
  padding:12px 0px;
}

summary
{
  font-weight:bold;
  text-align:center;
}

#fullname, #address, #message
  {
    width:100%;
  }

#top
	{
    width:15%;
    left: 75%;
    top: 85%;
    position:fixed;
	}
.button
{
  padding: 10px;
}
#reset
{
  background: linear-gradient(0deg, #701, #f23, #f78, white);
  background-color: #09f;
  font-weight:bold;
  color: black;
}
#submit
{
  background: linear-gradient(0deg, #03b, #09f, #6ef, white);
  background-color: #09f;
  color: black;
  font-weight:bold;
  text-decoration:underline;
}

@media (max-width: 768px)
  {
    header a
    {
      width: 30%;
      margin: 10px 0px;
    }
        .card
    {
      width:50%
    }
  }

@media (max-width: 576px)
  {
    header {padding:0px;}
    
    #mobiletitle
    {
      background: linear-gradient(180deg, white, #fd9, #f95, #930);
      padding:20px 60px;
    }
    
    header a
    {
      width: 100%;
      margin: 0px;
    }
    
    #navi label
    {
      display: inline-block;
      background: linear-gradient(0deg, #03b, #09f, #6ef, white);
      border: solid black;
    font-size:1.5em;
    padding: 5px 41.9%;
      background-color: #09f;
      font-weight:bold;
      width: 15%;
      text-align:center;
      text-decoration:none;
      color:black;
    }
    
    #navi label:hover
    {
      background: linear-gradient(0deg, #09f, #6ef, #dff, white);
      background-color: #6ef;
    }
    #navitems
    {
      display:none;
    }
    
    #navi input:checked ~ #navitems
    {
      display:flex;
    }
    
    .card
    {
      width:75%
    }
    
  }