@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

/* Topbar */

#topbar {
    display: flex;
    align-items: stretch;
    background-color: white;
    padding: 3rem 1rem 1rem 1rem;
    border-radius: 1rem 1rem 0 0;
  }
  
  #topbar > div {
    background-color: white;
    display: inline-block;
  }

  #topbar > div > img {
    height: 3rem;
    width: auto;
    margin-top: -1rem;
  }

  #topbar > div > a {
    text-decoration: none;
    color: black;
  }

  #logo {
    flex-grow: 1;
  }

  #space {
    flex-grow: 8;
  }

  #about {
    flex-grow: 1;
  }

  #test {
    flex-grow: 1;
  }


/* Main */
main img {
    width: 28%;
    height: auto;
}

body {
    background-image: url(images/bg800bulbs.jpg);
    background-repeat: no-repeat;
	  background-color: #544D47;
    margin: 3rem 0 10rem 0;
}

.wrapper {
	background-color: white;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem;
}

p {
    margin: 1rem;
}

p span {
    font-weight: bold;
}

.clearfix {
    clear: both;
  }

h3 {
    font-size: 1.3rem;
    margin: 3rem 1.5rem 1.5rem 1.5rem;
    background-color: #F8F4F4;
}



main img {
    margin: 1rem;
    float: right;	
}

#aboutus {
    margin-top: 6rem;
}

  .backtotop { 
    height: 8rem;
    position: relative;
  }

  .btn {
    background-color: #f4efef; /* Grey */
    padding: 0.8rem 5rem;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    border-radius: 3rem;
    border-style: solid;
    border-color: black;
    border-width: 0.02rem;
  }

  .btn a {
    text-decoration: none;
    color: black;
  }

  .center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .container {
    border-style: solid;
    border-color: rgb(109, 173, 166);
    border-width: 0.03rem 0.03rem 0.03rem 0.5rem; 
    background-color: #eee;
    padding: 1rem;
    margin: 2rem 1rem;
  }

  .container::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .container img {
    float: left;
    margin-right: 1.5rem;
    margin-top: 0;
    width: 10rem;
  }
  
  @media (max-width: 31rem) {
    .container {
        text-align: center;
    }
    .container img {
        margin: auto;
        float: none;
        display: block;
    }
  }

footer {
    padding: 1em 1rem 1rem 2rem;
    text-align: left;
    background-image: url(url);
    background-color: #ff6f00;
    color: white;
    font-weight: bold;
    border-radius: 0 0 1rem 1rem;
}



