body {
  margin: 0; 
  padding: 0; 
  color: #ecf0f1; 
  background: #000000; 
  font-size: 100%;  
  font-family: bebasneue, Arial, Helvetica, sans-serif;
}
#wrap {
  width: 40%; 
  margin: 0 auto;  
}
a { 
  color: #ecf0f1; 
  text-decoration: none; 
}
.flex-container {
  display: flex;
  justify-content: center;
}

.left, .right {
  padding: 2%;
}
.link-colored { 
   color: #ffff99; 
   text-decoration: underline; 
}
.profile-image {
  float: right;
  margin: 1%;
  width: 100px;
  height: 100px;
  clip-path: circle();
}
.matrix-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 50%;
  border-radius: 10px;
}
.signal-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 50%;
  border-radius: 10px;
}
.snapchat-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 50%;
}
.mastodon-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 50%;
  border-radius: 10px;
}
.title {
  text-align: left;
  margin: 0;
  color: #d0d3d4; 
  font-size: 5.5em;
}
.subheading-upper {
  text-align: center;
}
.subheading-lower {
  text-align: center;
  padding-top: 30px;
}
.divider {
  border-top: 2px solid #ecf0f1;
  width: 95%;
}
.option-box {
  width: 92%;
  margin: 15px auto;
  background: #222222;
  border-style: solid;
  border-width: 1px;
  border-color: #000000;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 0px 10px;
  text-align: center;
  transition: 0.2s;
}
.option-box:hover {
  width: 95%;
  border-color: #ecf0f1;
}
.option-title {
  font-size: 1.5em;
  line-height: 0.4;
}
.description {
  font-size: 0.8em;
}
.footer-note {
  text-align: center;
  font-size: 0.8em;
}
@font-face {
  font-family: 'Bebasneue';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/bebasneue.ttf) format('ttf');
}
/* This bit changes dimensions of a few things based on screen size */
@media only screen and (max-width: 1000px) {
 #wrap {
   width: 80%; 
   margin: 0 auto; 
}
.title {
  font-size: 4em;     
}
.profile-image {
  width: 75px;
  height: 75px;
}
.matrix-image {
  width: 80%;     
}
.snapchat-image {
  width: 80%;        
}
.mastodon-image {
  width: 80%;     
}