* {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: "FiraCode";
    src: url(../font/FiraCode-Regular.ttf) format('truetype');
}

[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

body {
    background-image: linear-gradient(grey, black);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    font-family: FiraCode;
}

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

.title {
    font-size: 50px;
    color: white;
}

.navbar-toggler {
    margin: auto;
}

ul.navbar-nav .nav-item .nav-link {
  font-size: 20px;
  margin: 10px 30px;
  cursor: pointer;
  transition: 0.2s ease;
  color: white;
}

#google:hover,
#stackoverflow:hover,
#discord:hover,
#github:hover,
#gitlab:hover,
#codepen:hover,
#download:hover {
  transform: scale(2.0);
  transition: 0.2s ease;
  color: indianred;
}

.hidden-content {
  opacity: 0;
  transition: 1s ease-in-out;
  margin-top: -240px;
  border: 2px solid #808080;
  border-radius: 20px;
  color: indianred;
  background-image: linear-gradient(#808080, white, black);
}

#download:hover+ .hidden-content, .hidden-content:hover {
  opacity: 1;
  transition: 1s ease-in-out;
}

.flexity {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  max-width: 320px;
}

.flexity::after {
  content: "";
  border: 20px solid transparent;
  position: absolute;
}

.comment.flexity::after {
  border-top-color: #808080;
  border-bottom: 0;
  bottom: -20px; 
  left: 50%;
  margin-left: -20px;
}

.comment i {
  font-size: 20px;
}

.comment i:hover {
  cursor: pointer;
}


.swal2-modal {
  background-image: linear-gradient(grey, black);
}

.swal2-html-container {
  color: whitesmoke;
}

.swal2-timer-progress-bar {
  background-color: whitesmoke;
}

.puzzle1field {
  color: whitesmoke;
  background-image: linear-gradient(grey, white);
}

