* {
  box-sizing: border-box;
}

body {
    background-color: #f4faf8;
    color: black;
    }

    /* unvisited link */
a:link {
    color: #13b886;
  }
  
  /* visited link */
  a:visited {
    color: #a272ee;
  }
  
  /* mouse over link */
  a:hover {
    color: #0dd499;
  }
  
  /* selected link */
  a:active {
    color: #7aa197;
  }

  /* stylize headers */
 
  .title {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 300%;
    text-align: center;
    color: #648FF3;
  }

  /* I want my content to be centered sometimes */
  .content {
    text-align: center;
  }
  
  /* make content card boxes for main content */
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
    padding: 16px;
    background-color: #f1f1f1;
  }

  /* A card effect for photos */
.polaroid {
  width: 400px;
  color: black;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 25px;
  float: right;
}

.cont {
  text-align: center;
  padding: 10px 20px;
}

/* Stylize my owl picture */
.owlme {
  width: 400px;
}

/* Object styling for Buzzword */
object {
  width: 100%;
  height: 500px;
}

/* CSS styling for contact form - taken from W3 Schools and modified*/
input[type=text], select, textarea {
  width: 70%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  background-color: #B5CAF0;
}

input[type=email] {
  background-color: #B5CAF0;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #254F9B;
  color: #B5CAF0;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #3F65AC;
}

.container {
  border-radius: 5px;
  background-color: #84A3DC;
  padding: 20px;
  width: 40%;
  margin: auto;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }

  .container {
    width: 90%;
  }

  .owlme {
    width: 200px;
  }

  .polaroid {
    width: 200px;
  }
}