* { 
    margin: 0px 0px;
    padding: 0 0;
}
:root {
    --nav-bg-color: rgba(36, 53, 71, 0.68);
    --btn-glow-top:hsl(290, 84%, 55%); /* Color for button top shadow/glow */
    --btn-glow-btm: hsl(182, 65%, 55%); /* Color for button bottom shadow/glow */
    --btn-brdr: hsl(107, 59%, 46%) ;
    --transparent-clr: rgba(0, 0, 0, 0);
    --brdr-color: hsl(55, 61%, 35%);
    --bf-box-bgcolor: rgba(36, 53, 71, 0.68);
    --div-mainbg-clr: hsl(51, 34%, 12%);
    --clr-focus: rgb(46, 139, 239) ;
    --purple-accnt: hsl(290, 68%, 37%);
    --teal-accnt: hsl(182, 81%, 29%);
    --clr-main-link: hsl(0, 0%, 100%);
    --clr-header: #fff;
    --nav-txt-clr: #fff; 
    --std-box-shdw: 0px 5px 6px 0px rgba(0,0,0,0.75);
    --bg-hex5-pat: url('../images/pattern-Hex5-dbs.svg'); /* Background Pattern */
    --clr-selection: hsl(275, 93%, 48%); /* Color for highlight selection */
}


:focus {
  outline: .2rem solid var(--clr-focus);
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}

button:focus {
  outline: .2rem solid var(--clr-focus);
}
/* CSS Modifiers for base tags */

body {
    margin: 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-image: url(../images/WebBG.png);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: Thicccboi, sans-serif;
    color: #fff;
    font-size: 1rem;
  }



  a {
      color: var(--clr-main-link);
      text-decoration: none;
      font-size: 1.1rem;
      font-family: Thicccboi, sans-serif;
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
  }
  a:hover,a:focus {
      color: var(--teal-accnt);
      text-decoration: none;
      outline: 0 none;
  }

  
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--clr-header);
  font-family: "Open Sans", sans-serif;
  margin: 0;
  line-height: 1.3;
}

p {
  margin-bottom: 1.2rem;
}
p:last-child {
  margin-bottom: 0;
}

/*
 * Selection color
 */
 ::-moz-selection {
  background-color: var(--clr-selection);
  color: #fff;
}

::selection {
  background-color: var(--clr-selection);
  color: #fff;
}

.btn {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn:hover,
.btn:focus,
.btn:active:focus {
  outline: 0 none;
}


/* Main Section Controls */
.dr-hdrlogo {
  width: 16rem;
}
.dr-main {
    margin: 0 0;
    padding: 0 0;
    width: 100vw;
    height: auto;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}
.dr-outercont {
    margin: 0 0;
    width: 80%;
    background-color: rgba(255, 255, 255, 0.805);
    display: flex;
    justify-content: center;
    align-items: center;
}
.dr-maincont {
    margin: 0 0;
    width: 100%;
    backdrop-filter: blur(.2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dr-logosect {
    margin: 1rem 0;
}
.dr-txt1 {
    margin: 0 0 2rem 0;
    width: auto;
    max-width: 80%;
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}
.dr-linksection {
    padding: 2rem .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dr-btn1 {
    margin: .5rem .5rem;
    padding: 1rem .75rem;
    width: 8rem;
    height: auto;
    min-height: 2.5rem;
    background-color: #000;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .75rem;
    text-align: center;
    border: .2rem solid rgb(255, 255, 255);
    box-shadow: var(--std-box-shdw);
}

.dr-btn1:hover {
    background-color: rgba(178, 178, 44, 0.8);
    border: .2rem solid #000 ;
}
.dr-msdl-logo {
  width: 1.15rem;
}

@media screen and (max-width: 767px) {
  .dr-hdrlogo {
    width: 12rem;
  }
  .dr-outercont {
    width: 90%;
  }
  .dr-linksection {
    flex-direction: column;
  }
  .dr-txt1 {
    max-width: 95%;
    font-size: 1rem;
  }
  .dr-btn1 {
    font-size: 1rem;
    padding: .75 .5rem;
  }
}