/**
* GENERAL STYLING
 */
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: #000000;
  background-color: #a4daf4;
}

body::after {
  content: '';
  position: absolute;
  top: 80%;
  left: 33.33%;
  width: 800px;
  height: 365px;
  transform: translate(-33.33%, -80%);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('../img/domain-reserved.png');
}

a, button {
  outline: none !important;
}

::-moz-selection {
  background: #c9d9e2;
}

::selection {
  background: #c9d9e2;
}

a {
  color: #000000;

  transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
}

a:hover,
a:focus {
  color: #000000;

  text-decoration: underline;
}

/**
* FRAMES
 */
.frame {
  max-width: 500px;
  width: 100%;
  top: 50%;
  left: 50%;
  z-index: 1;
  position: absolute;
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
  transform: translate(-50%, -50%);
}

.frame-header::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 80px;
  height: 30px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('../img/logo.png');
}

.frame .frame-header {
  position: relative;
  padding: 15px 30px;
  min-height: 71px;
  border-bottom: 2px solid #f7f7f7;
}

.frame .frame-header .title {
  display: inline-block;
  padding: 0 30px;
  font-weight: 700;
  font-size: 1.5em;
}

.frame .frame-header .title::before {
  content: '.';
}

.frame .frame-body {
  padding: 15px 30px 30px;
}

.frame .frame-body .title {
  display: inline-block;
  padding: 0 30px;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.frame .frame-body .content {
  padding: 0 30px;

  margin-bottom: 30px;
}

.frame .frame-body .anchor-underline {
  font-size: 0.85em;
  font-weight: 500;
  text-decoration: underline;
}

.frame .frame-body .anchor-underline:hover,
.frame .frame-body .anchor-underline:focus {
  color: #328ce8;
}

/**
* ALERTS
 */
.alert.alert-flat {
  padding: .75rem 2rem;
  color: #000000;
  width: 100%;
  border: none;
  font-size: 0.9em;
  line-height: 1.4;
  margin: 10px 0 20px;
}

.alert.alert-flat.alert-info {
 background-color: #e0f1f9;
}

.alert.alert-flat .title {
  font-size: 1.25em;
  display: block;
  font-weight: 500;
  margin-bottom: 20px;
}

/**
* MEDIA QUERIES
 */
@media (min-width: 1200px) and (max-width: 1600px) {
  .frame .frame-header .title {
    padding: 0;

    font-size: 1.25em;
  }
}

@media (max-width: 1200px) {
  body::after {
    left: 15%;
    width: 700px;
    height: 320px;
  }
}

@media (max-width: 992px) {
  body::after {
    width: 600px;
    height: 275px;
  }
}

@media (max-width: 768px) {
  body::after {
    content: none;
  }

  .frame {
    max-width: 90%;
  }

  .frame .frame-header::after {
    content: none;
  }
}
