#extras_box{
  display: flex;
  flex-direction: row;
  margin-top: 0.9375rem;
}
.url_container{
  background: #2f2f2f; 
  min-height: 6.25rem;
  padding: 1.25rem;
  width: 70%;
}
.link-item {
  background: #1a1a1a; 
  color: #fff;
  padding: 1.0625rem;
  border-radius: 0.4375rem;
  margin: 0.625rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.0625rem;
  overflow: hidden;  
  transition: all 0.2s;
}
.link-item:hover{
  background: #836a84 !important;
  color: #fee6ff !important;
}
#links-btn{
  margin: 1.5625rem auto auto auto;
  text-align: center;
  font-weight: bold;
}
#links-btn a{
  background: #6e4f6f;
  color: #fff;
  padding: 0.9375rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0.4375rem;
}
#links-btn a:hover{
  background: #816c82;
  transition: background-color 0.1s ease;
}

@media (max-width: 75rem) {
  #extras_box{
    flex-direction: column;
  }
  .url_container,
  #review_container{
    width: 100% !important;
  }
}
@media (max-width: 48rem) {
  .url_container{
    width: 100%;
    border-radius: 0;
  }
}
