
/*-- Standard Rules --*/
*
{
  font-family: atten-new, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}

html
{
    margin: 0;
    padding: 0;
}
::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* make scrollbar transparent */
}

body
{
  background-color: #002642;
  padding: 0;
  margin: 0;
  min-width: fit-content;
  transition: background-color 1000ms linear;
}

a
{
  text-decoration: none;
}

.debug-text
{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
  font-size: 40px;
  color: white;
  width: 50%;
}

button
{
  cursor: pointer;
}

p, li
{
  font-size: 18px;
  margin: 0;
}

h1{
  font-size: 72px;
  margin: 0;
  line-height: 150%;
}

h2{
  font-size: 60px;
  margin: 0;
  line-height: 200%;
}

h3{
  font-size: 48px;
  margin: 0;
  line-height: 200%;
}

.centered {text-align: center;}
.right {text-align: right;}

.after {opacity: 0.5 !important;}
.ready {opacity: 1 !important;}

.cursive-reg
{
  font-family: pacifico,sans-serif;
  font-weight: 400;
  font-style: normal;
}

.cursive-bold
{
  font-family: pacifico,sans-serif;
  font-weight: 700;
  font-style: normal;
}

.standard-font-bold
{
  font-family: atten-new,sans-serif;
  font-weight: 700;
  font-style: normal;
}

.standard-font-italic
{
  font-family: atten-new,sans-serif;
  font-weight: 400;
  font-style: italic;
}

.navigation
{
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(-50%, 0%);

  display: flex;
  flex-direction: column;

}

.scroll-dot
{
  background-color: grey;
  width:10px;
  height:10px;
  border-radius: 5px;
  margin: 10px;
  cursor: pointer;
}

.curr-dot
{

}

.tester
{
  position:fixed;
  top: 5px;
  right: 5px;
  z-index: 5;
  padding: 10px;
  background-color: white;
  color: black !important;
}

.scrollfolio-container
{
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  display: block;
}

.scrollfolio-section
{
  width: 100%;
  overflow-y: scroll;
  padding-right: 17px; 
  box-sizing: content-box; 

  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;

  position: relative;
}

.img-bkg-container
{
  width: 100%;
  position:relative;
  left: 0;
  top: 0;
  overflow:hidden;
  background-color: rgba(0,0,0,0);
}

.img-bkg-container img
{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: auto;
  height: 100%;
  opacity: 0;
	-webkit-transition: opacity .5s ease-in;
       -moz-transition: opacity .5s ease-in;
        -ms-transition: opacity .5s ease-in;
         -o-transition: opacity .5s ease-in;
            transition: opacity .5s ease-in;
}

.standard-button
{
  border: 0;
  width: 200px;
  height: 40px;
  padding: 5px;
  border: 2px solid white;
  background-color: inherit;
}

@media only screen and (min-width: 1200px)
{
  .img-bkg-container img
  {
    width: 100%;
    height: auto;
  }
}

.loading-container
{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 9998;
  background-color: black;
  opacity: 0.75;
}

.loading-container-inside
{
  position: relative;
  width: 100%;
  height: 100%;
}

.loading-ring
{
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
  z-index: 9999;
  margin: 0;
}

.lds-ring-white {
  display: inline-block;
  position: relative;
  top: calc(50% - 32px);
  width: 64px;
  height: 64px;
}
.lds-ring-white div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #FFF;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #FFF transparent transparent transparent;
}
.lds-ring-white div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring-white div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring-white div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
