/* Setup */
.container {
  font-family: 'Roboto', sans-serif;
  position: relative;
}

.content-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Logo Styling */
.logo {
  height: 50px;
}

.link {
  white-space: nowrap; 
  width: 480px; 
  overflow: hidden;
  text-overflow: ellipsis; 
}

/* Text Body Styling DIV */
.textBlock {
  margin-bottom: 100px;
  font-size: 13px;
  margin-left: 10%;
  margin-right: 10%;
  /* display: flex; */
  
}

@media (max-width: 600px) {  
  .content-wrap {
    position:relative;
    top: 50%;
    left: 50%;
  }
  /* Footer Styling */
  footer {
    display: none;
  }
}


/* Line seperator */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #a7d971;
  margin: 1em 0;
  padding: 0;
}

hr.gap {
  display: block;
  height: 1px;
  border: 0;
  margin: 1em 0;
  padding: 0;
}

/* Redirect Button Styling */
.btn {
  display: inline-block;
  background-color: #ffffff00;
  border-radius: 5px;
  border: 1px solid #8DC4DC;

  color: #07719F;
  padding: 8px 15px;
  text-align: center;
  text-decoration: none;
  font-size: 12px;

  transition: 0.3s;
}

/* Button Hovering Effects */
.btn:hover {
  background-color: #07719F;
  color: white;
}

/* Header Styling */
h2 {
  font-size: 25px;
  font-weight: bolder;
}

/* DCS Link Styling */
a {
  color:#07719F;
  transition: 0.2s;
}

/* DCS Link Hovering Effect */
a:hover {
  color:#8DC4DC;
}

/* Footer Styling */
footer {
  position: fixed;
  left: 0;
  bottom: 10;
  width: 100%;
  font-size: 10px;
  text-align: center;
}