/* Setup */
.container {
  font-family: 'Roboto', sans-serif;
  position: fixed;
  margin: auto;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

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

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

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

/* Text Body Styling DIV */
.textBlock {
  margin-bottom: 30px;
  font-size: 13px;
  display: flex;
  
}

.column {
  flex-grow: 0;
  flex-shrink: 0;
  width: 700px;
}

@media (max-width: 1200px) {  
  .textBlock {
    margin-bottom: 30px;
    font-size: 13px;
    display: initial ;
    
  }
  
}


/* 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;
}