/* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
   font-family: "PICS";
   src: url(BelganAesthetic.ttf) format('truetype'), 
     
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html, body {
   width: 100%;
   height: 100%;
   overflow: hidden;
}

body {
   background-color:#000000;
   color: lightgrey;
  
   padding-top: 15%;
   width: 100%;
   text-align: center;
   line-height: 1.6;
   font-family:"PICS";
   box-sizing: border-box;
   align-items: center;
}

.over_p {
  display: inline !important;
  margin: 0 !important;
  
}

.social {
  margin-top: 5% !important;
  display: flex;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  font-size: 24px;
 
  white-space: nowrap;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.over_p:hover {
  display: inline !important;
  margin: 0 !important;
  color: rgb(255, 255, 255) !important;
  font-style: italic !important;
}




a {
  position: relative;
   color: rgb(131, 131, 131);
   text-decoration: none;
   padding: 1% 3%;
   margin: 1%;
   border: 1px solid white;
   border-radius: 80px;
   transition: 0.1s ease-in;
  
}

a:hover {
   color:rgb(255, 255, 255);
   transform: rotate(25deg);
   
}

/* ==========================================================================
   Components
   ========================================================================== */

.full-container {
   width: 100%;
   height: 100%;
   overflow: hidden;
}

.info {
  font-size: 26px;
   padding-bottom: 50px;
   position: relative;
   margin-left: auto;
   margin-right: auto;
   width: 50%;
}
.red-star {
  color: rgb(255, 255, 255);

}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: lightgrey;
  padding: 0.2em 0;
}



/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
   Media Queries for Responsive Design.

   ========================================================================== */

@media only screen and (max-width: 767px) {
  .floatding-card {
      display: none !important;
  }

  
  .social {
    margin-top: 10% !important;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    font-size: 20px;
  
  }
  .info {
    font-size: 22px;
     padding-bottom: 50px;
     position: relative;
     margin-left: auto;
     margin-right: auto;
     width: 80%;
  }
}



@media only screen and (max-height: 600px) {
  .floatding-card {
      display: none !important;
  }
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: lightgrey !important;
    /* Black prints faster */
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

