* {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    scroll-behavior: smooth;
}

@media (prefers-color-scheme: dark) {
    :root {
    --bg-header: #27272a;
    --bg-footer: #27272a;
    --border-s: #e9e61fff;
    --logo-clr: #f1f5f9;
    }

    body {
    background-color: #111;
    color: #EEE;
    }

    a:link,
    a:visited,
    a {
    font-weight: 550;
    color: #e9e61fff;
    text-decoration: underline 2px;
    text-decoration-color: transparent;
    }

    a:hover {
    text-decoration:underline 2px;
    text-decoration-color: #e9e61fff;
    transition: 0.15s ease-in;
    }

    ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: #f0f1f0;
    }

    ::-webkit-scrollbar-thumb {
    background: #BBB;
    border-radius: 0;
    }

    .logoBtn {
    width: 25px;
    height: 24px;
    margin: 5px;
    border-style: solid;
    border-radius: 9999px;
    border-color: var(--logo-clr);
    fill: var(--logo-clr);
    display: flex;
    justify-content: center;
    /* transition tips */
    -webkit-transition: fill 2s ease-out;
    -moz-transition: fill 2s ease-out;
    -o-transition: fill 2s ease-out;
    transition: fill 2s ease-out;
    -webkit-transition: border-color 2s ease-out;
    -moz-transition: border-color 2s ease-out;
    -o-transition: border-color 2s ease-out;
    transition: border-color 2s ease-out;
    }

    .logoBtn:hover {
    border-color: var(--border-s);
    fill: var(--border-s);
    }
}

@media (prefers-color-scheme: light) {
    :root {
    --bg-header: #f1f5f9;
    --bg-footer: #f1f5f9;
    --border-s: #e9e61fff;
    --logo-clr: #27272a;
    }

    a:link,
    a:visited,
    a {
    font-weight: 550;
    color: #663298;
    text-decoration: underline 2px;
    text-decoration-color: transparent;
    }

    a:hover {
    text-decoration:underline 2px;
    text-decoration-color: #663298;
    transition: 0.15s ease-in;
    }

    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        background: #f0f1f0;
    }

    ::-webkit-scrollbar-thumb {
    background: #BBB;
    border-radius: 0;
    }

    .logoBtn {
    width: 25px;
    height: 24px;
    margin: 5px;
    border-style: solid;
    border-radius: 9999px;
    border-color: var(--logo-clr);
    fill: var(--logo-clr);;
    display: flex;
    justify-content: center;
    /* transition tips */
    -webkit-transition: fill 2s ease-out;
    -moz-transition: fill 2s ease-out;
    -o-transition: fill 2s ease-out;
    transition: fill 2s ease-out;
    -webkit-transition: border-color 2s ease-out;
    -moz-transition: border-color 2s ease-out;
    -o-transition: border-color 2s ease-out;
    transition: border-color 2s ease-out;
    }

    .logoBtn:hover {
    border-color: #663298;
    fill: #663298;
    }
}

.font-custom {
    font-size: 18px;
}

.screenResponsive {
    display: flex;
    align-items: center;
}

.mg-left {
    margin-left: 20px;
}

.fullscreenview {
    height: 100vh;
    width:100%;
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 480px) {
    .screenResponsive {
    display: block;
    text-align: center;
    margin: auto;
    }

    .mg-left {
        margin-left: 0;
    }

    .font-custom {
    font-size: 12px;
    }
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  height: 100vh;
  width:100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  border-radius: 18px;
  margin: auto;
  padding: 0;
  width: 40%;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

.modal-header {
  align-items:center;
  padding: 20px 20px;
  border-radius:8px;
  background-color: #5cb85c;
  color: white;
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 15px;
  font-weight: 800;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}