ï»¿* {
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  margin: 0;
}

/* Style the header */
.header {
  padding: 100px;
  text-align: center;
  background-image: url('img/banner.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

/* Increase the font size of the h1 element */
.header h1 {
  font-size: 40px;
}

h1{
  font-weight: bold;
}

h2{
  font-size: 30px;
}

/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  background-color: #333;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 50px;
  text-decoration: none;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Column container */
.row {  
  display: flex;
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
  
}

/* Main column */
.main {   
  flex: 70%;
  background-color: white;
  padding: 20px;
}

/* Fake image, just for this example */
.textbox_red {
  background-color: #b06c76;
  width: 100%;
  height: 60px;
  padding: 20px;
}

.textbox_blue {
  background-color: #7082a9;
  width: 100%;
  height: 60px;
  padding: 20px;
}

.textbox_black {
  background-color: #a1a1a1;
  width: 100%;
  height: 60px;
  padding: 20px;
}

.textbox_yellow {
  background-color: #b6a680;
  width: 100%;
  height: 60px;
  padding: 20px;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
}

.instagram, .discord {
  display: inline-block;
}

#backToTopBtn {
  font-size: 3em;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
}

.typeIcons{
  height: 50px;
  padding-right:10px;
  padding-bottom:10px;
}

#friendsForever{
  width: 40%;
}

#bigBird{
  width: 40%;
}

#seasideTown{
  width: 50%;
}

#dogFountain{
  width: 30%;
}

#acrylicPour{
  width: 40%;
}

#danforthCentury{
  width: 30%;
}

#danforthCentury{
  width: 30%;
}

.comIcons{
  display: inline-block;
}

.instagram, .linkedin, .discord, .gmail{
  cursor: pointer;
  color: #111;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width:100%;
  }
}