body {
  font-family: Rubik, sans-serif;
  color: #fff;
  background: #2e2f3e
}

header {
  /* position: absolute; */
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-content: center;
  justify-content: space-between;
}

header nav {
  display: flex;
  justify-content: flex-end;
}

header a {
  color: rgba(255, 255, 255, .7);
  font-weight: 300;
  text-decoration: none;
  padding: 5px 10px;
  margin: 0 5px;
  font-size: 90%;
  border: 1px solid rgba(174, 213, 255, 0);
  border-radius: 6px;
  transition: border, color .2s;
  background: 0 0;
  font-family: monospace
}

header a.home {
  display: flex;
  align-content: center;
  padding: 0;
  margin: 0;
}

header a.home img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border-radius: 50%;
  margin-top: -1px;
}

header nav a.active,
header nav a:hover {
  color: #2e2f3e;
  border: 1px solid rgba(174, 213, 255, .5);
  background: -webkit-linear-gradient(45deg, #aed5ff, #c5c4ff)
}

.container {
  width: 100%;
  max-width: 800px;
  font-size: 1.2rem;
  margin: 60px auto;
  padding: 15px;
  box-sizing: border-box;
  position: relative
}

h1 {
  font-weight: 600
}

p a,
ul a {
  background: -webkit-linear-gradient(45deg, #aed5ff, #c5c4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400
}

a i {
  color: #aed5ff !important;
  -webkit-text-fill-color: #aed5ff !important
}

.header-text a {
  white-space: nowrap
}

p {
  font-weight: 300;
  line-height: 1.8rem
}

p img {
  max-width: 100%;
  border-radius: 3px;
  transform: scale(.8, .8) rotate(-1deg);
  transition: all .2s;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .1)
}

p img:hover,
p:nth-child(even) img:hover {
  transform: scale(1, 1) rotate(0) !important
}

p.flex {
  display: flex;
  align-items: center
}

p.flex span {
  width: 50%
}

@media only screen and (max-width:600px) {
  p.flex {
    display: block
  }
}

p.flex span:last-of-type img {
  transform: scale(.8, .8) rotate(1deg)
}

p.flex span:first-of-type {
  margin-right: 35px
}

.project-wrapper {
  margin: 50px 0;
  display: grid;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-columns: 33% 33% 33%
}

@media only screen and (max-width:600px) {
  .project-wrapper {
    grid-template-columns: 50% 50%
  }
}

@media only screen and (max-width:400px) {
  .project-wrapper {
    grid-template-columns: 100%
  }
}

.project,
.project a {
  font-weight: 300;
  color: #2e2f3e;
  text-decoration: none
}

.project {
  display: flex;
  align-items: center;
  justify-content: flex-start
}

.project.smmall img {
  border: 2px dotted rgba(255, 255, 255, .5);
  border-radius: 50%
}

.project h4 {
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, .7)
}

.project h5 {
  font-weight: 300;
  margin: 0;
  color: rgba(255, 255, 255, .5)
}

.project img {
  width: 75px;
  margin-right: 15px
}

.beer {
  font-size: 200%
}

.cta {
  border-top: 1px dashed white;
  margin-top: 2rem;
}

.cta form {
  display: flex;
}

.cta input {
  padding: 0.5rem 1rem;
  font-size: 120%;
  border: 0;
  font-family: 'Courier New', Courier, monospace;
  border-radius: 6px;
}

.cta input[type='email'] {
  border-radius: 6px 0 0 6px;
}

.cta input[type='submit'] {
  font-weight: bold;
  border-radius: 0 6px 6px 0;
}

@media only screen and (max-width:600px) {
  .cta form {
    flex-direction: column;
    gap: '10px'
  }
  .cta form input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 6px !important;
    margin-bottom: 5px;
  }
}
