* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.logo {
  font-family: 'Reenie Beanie', cursive;
  font-weight: unset;
}

.bodyInner {
  margin: 0 5rem;
}

h2 {
  font-family: "Raleway" , sans-serif;
  margin: 2rem 0 1rem 0;
}

/*******/

body {
  font-family: "Source Serif Pro" , serif;
  overflow-x: hidden;
}

nav, .navspacer {
  height: 5.2rem;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 5;
}

nav ul {
  list-style: none;
}

nav .top {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFF0F0;
  padding: 0 5rem;
}

nav .insta {
  height: 2rem;
  width: auto;
}

nav .top .left {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #000;
}

nav .top .left svg {
  margin-right: 1rem;
}

nav .top .right {
  cursor: pointer;
}

nav .top .right.narrowScreen {
  display: none;
  padding: 1rem;
  margin-right: -1rem;
}

.navdropper {
  width: 1.8rem;
  height: 1rem;
  position: relative;
}

.navdropper .box {
  width: 100%;
  height: 0.2rem;
  background-color: #000;
  position: absolute;
  transition: transform 100ms ease-out;
}

.navdorpper .box.one {
  top: 0;
}

.navdropper .box.two {
  bottom: 0;
  box-shadow: 0 0.1rem 0 0.1rem #FFF0F0;
}

#NAVDROP:checked ~ .right .navdropper .box.one {
  transform: translateY(0.4rem) rotate(135deg);
}

#NAVDROP:checked ~ .right .navdropper .box.two {
  transform: translateY(-0.4rem) rotate(45deg);
}

.dropmenu {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  padding: 4rem;
  background-color: #fff;
  transform: translateX(110%);
  transition: transform 100ms ease-in;
  box-shadow: 0 0 1rem 0 #FFF0F0;
}

.dropmenu ul {
  list-style: none;
}

.dropmenu li {
  margin: 1rem;
  text-align: right;
}

.dropmenu a {
  color: #000;
  text-decoration: none;
}

#NAVDROP:checked ~ .dropmenu {
  transform: none;
  transition-timing-function: ease-out;
}

nav .bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

nav .bottom .left li {
  display: inline;
  margin-right: 2rem;
}

nav .bottom a {
  color: #000;
  text-decoration: none;
}

footer {
  font-family: "Raleway" , sans-serif;
  background-color: #FFF0F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 5rem;
}

footer ul {
  list-style: none;
}

footer .right {
  text-align: right;
}

footer a {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 0.1rem 0;
}

footer .caswdlogo {
  height: 1.5rem;
  width: auto;
  margin-top: 0.1rem;
}


@media (min-width: 1200px) {
  .bodyInner {
    width: 1000px;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  nav, .navspacer {
    height: 4rem;
  }
  nav .top .right.wideScreen {
    display: none;
  }
  nav .top .right.narrowScreen {
    display: block;
  }
  nav .bottom {
    display: none;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 0.95rem;
  }

  .bodyInner {
    margin: 0 2rem;
  }

  nav .top,
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 0.9rem
  }

  .bodyInner {
    margin: 0 1rem;
  }

  nav .top,
  footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  html {
    font-size: 0.7rem;
  }
}

@media (max-width: 350px) {
  html {
    font-size: 0.6rem;
  }
}