* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f5f5f5;
  font-family: filson-soft, sans-serif;
  color: #333333;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  background-color: #FFDDBA;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-box {
  height: 50px;
  width: 50px;
  margin-left: 40px;
}

.logo {
  fill: rgba(245, 245, 245, 0.8);
  transition: fill 0.3s;
}

.logo:hover {
  fill: rgba(245, 245, 245, 1);
}

.nav-links {

  font-weight: 500;
}

.nav-links ul {
  list-style-type: none;
  display: flex;
  align-items: center;
}

.nav-links a,
.cta-section a {
  display: inline-block;
  margin: 20px;
  font-size: 1.5em;
  color: rgba(255, 153, 51, 0.8);
  transition: color 0.3s, text-decoration 0.3s, transform 0.3s;
  text-decoration: none;
}

.nav-links a:hover,
.cta-section a:hover {
  color: rgba(255, 153, 51, 1);
  text-decoration: underline;
  transform: scale(1.2);
  cursor: pointer;
}

.cta {
  border: 4px solid rgba(255, 153, 51, 0.8);
  border-radius: 10px;
  padding: 5px;
  text-align: center;
}

.cta:hover {
  border: 4px solid rgba(255, 153, 51, 1);
}

.social {
  margin-right: 40px;
}

.social a {
  text-decoration: none;
}

.social i {
  color: rgba(245, 245, 245, 0.8);
  margin-left: 10px;
  font-size: 2em;
}

.social i:hover {
  color: rgba(245, 245, 245, 1);
}

/* NAV MEDIA QUERIES */

@media screen and (max-width : 1024px) {
  .logo-box {
    height: 30px;
    width: 30px;
  }

  .nav-links a {
    font-size: 1em;

    margin: 10px;
  }

  .social i {
    font-size: 1.5em;
  }

}

 /* END NAV MEDIA QUERIES */

header {
  position: relative;
  top: -20px;
  width: 100%;
}

.img-container {
  margin: 0 auto;
  width: 60%;
}

main {
  display: flex;
  justify-content: center;
}

main img {
  width: 200px;
}

.bubble {
  margin: 40px;
}

main p {
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}

.info {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.cta-section {
  align-self: center;
  
}

.projects {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}

.project-card {
  margin: 30px;
  height: 300px;
  width: 300px;
  box-shadow: inset 0px 0px 6px 1px rgba(122,122,122,0.5);
  transition: all 0.3s;
}

.project-card:hover,
.project-card:focus {
  transform: scale(1.2);
}

.project-img-1 { background-image: url(../images/cookemipsum.png); }
.project-img-2 { background-image: url(../images/craftbrew.png); }
.project-img-3 { background-image: url(../images/colorgenerator.png); }
.project-img-4 { background-image: url(../images/todo.png); }

