@import 'colors.css';
@import 'default-override.css';
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import 'navbar.css';

:root {
  color-scheme: dark;
}

*,
::after,
::before {
    box-sizing: border-box;
}

::selection {
  /* background: rgba(255, 245, 30, 1); */
  background: var(--main-color);
  color: #111;
}

body {
  margin: 0;
  /* background: #212529; */
  /* background: linear-gradient(36.52deg,#23609e,#8155e6); */
  
  /* background: linear-gradient(135deg,#2e69ff,#133178); */
  /* background: linear-gradient(135deg,#3a3a3a,#181818); */

  /* font-family: 'Rubik', sans-serif; */
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-size: 0.95rem;
  font-style: normal;

  background-color: #191919;
}


/* Main */
.main {
    margin-top: 100px; /* navbar height is 75px */
    color: rgb(238, 238, 238);
    /* Centers main and sets max width */
    max-width: 1000px;
    position: relative;
    margin-left: auto;
    margin-right: auto;

    padding-left: 15px;
    padding-right: 15px;    
}
/* End of Main */

/* Mobile */
@media only screen and (max-width: 450px) {
  .main {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* Footer */
.footer-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

.footer {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 30px;

    text-align: center;
    color: rgba(255, 255, 255, 0.5);

    border: rgba(255, 255, 255, 0.501);
    /* border-style: solid; */
    margin: 15px;
    border-radius: 10px;
}

/* Mobile */
@media only screen and (max-width: 450px) {
  .footer {
    margin-left: 5px;
    margin-right: 5px;
  }
}

.footer hr {
  margin: 0;
  margin-bottom: 30px;
}

.footer .social-icons {
  margin-bottom: 15px;
  display: inline-flex;
}

.footer .social-icons a {
  display: inline-flex;
  margin-left: 4px;
  margin-right: 4px;
  border-radius: 100%;
}

.footer .social-icons .icon {
  width: 100%;
  max-width: 35px;
  transition: opacity 0.2s ease-in-out;
  opacity: 50%;
  border-radius: 100%;
}

.footer .social-icons a:hover .icon {
  opacity: 100%;
}

.footer .social-icons a:focus .icon {
  opacity: 100%;
}

.footer .footer-logo img {
  width: 100%;
  max-width: 30px;
  opacity: 50%;
  vertical-align: middle;
  transition: opacity 200ms ease-in-out;
}

.footer .footer-logo:hover img {
  opacity: 100%;
}

.footer .footer-logo:focus img{
  opacity: 100%;
}

.footer .text {
  margin-left: 5px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* End of Footer */



.btn {
  display: inline-block;
  font-weight: 500;
  line-height: 1.5;
  color: white;
  text-align: center;
  text-decoration: none;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  /* border: 2px solid transparent; */
  padding: 0.7rem 0.9rem;
  height: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  border-radius: var(--main-rounding);
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.btn-primary, .btn-outlined {
  background-color: hsl(222, 14%, 28%);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--main-color);
}

.btn-outlined {
  border-color: transparent;
  border-width: 3px;
  border-style: solid;
}

.btn-outlined:hover,
.btn-outlined:focus {
  border-color: var(--main-color);
  outline: none;
}

/* Larger button that spans the width of the page */
.btn-big { /* can be used with any button */
  /* padding: 1rem 2rem; */
  width: 100%;
}

/* Button with icon */
.btn-icon {
  display: inline-flex;
  gap: 0.8rem;
}

.btn-icon img {
  /* margin-right: 0.9rem; */
}

.btn-featured {
  border-color: gold;
}

a {
  text-decoration: none;
  color: rgb(238, 238, 238);
}

/* .link {
  color: var(--main-color);
  font-weight: 400;
  text-decoration: underline 0.15em rgba(255, 255, 255, 0);
  transition: text-decoration-color 250ms;
}

.link:hover {
  text-decoration-color: var(--main-color);
} */

.link {
  text-decoration: none;
  color: var(--main-color);
  font-weight: 500;
  border-radius: 5px;
  padding: 2px;
  padding-left: 3px;
  padding-right: 3px;
  margin-left: -3px;
  margin-right: -3px;
  transition: 200ms;
}

.link:hover {
  background-color: var(--main-color);
  color: white;
}

.link-white {
  text-decoration: none;
  color: rgb(238, 238, 238);
  transition: 200ms;
}

.link-white:hover {
  color: rgb(187, 185, 185);
}

.element-background-box {
  border-radius: var(--main-rounding);
  background-color: #282c35;

  padding: 15px;

  animation: fadein 0.5s ease-in-out;
}

.element-background-box:not(:nth-child(2)) {
  margin-top: 15px;
}

.element-background-box .element-title {
  margin-bottom: 10px;

  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2rem;
}

@keyframes fadein {
  from {opacity:0} 
  to {opacity:1}
}


/* Page title group */
.page-title {
  margin-bottom: 25px;
  text-align: center;
}

/* Main title */
.page-title h1 {
  margin-bottom: 0;
}

/* Subheading, mostly used for dates */
.page-title h4 {
  /* opacity: 75%; */
  line-height: 1rem;
  border-radius: 5px;
  padding: 5px;
  margin: 0;
  margin-bottom: 5px;
  display: inline-flex;
  background-color: #464d5e;
}


/* hover color outline */
.hover-color-outline {
  transition: 200ms ease-in-out;

  border-color: transparent;
  border-width: 3px;
  border-style: solid;
}

.hover-color-outline:hover {
  border-color: var(--main-color);
}