body{
  padding: 0;
  margin:0;
  color:black;
  overflow: hidden;
}

::-webkit-scrollbar {
  display: none;
}
*{
  scrollbar-width: none;
}
*{
  user-drag: none;
  -webkit-user-drag: none;
}
.title{
  user-select: none;
}

/*----------------FONTS----------------*/
@font-face {
  font-family: Cindie2;
  src: url('assets/fonts/Cindie2.ttf');
}
@font-face {
  font-family: Inter-Bold;
  src: url('assets/fonts/Inter-Bold.ttf');
}
@font-face {
  font-family: Inter-Regular;
  src: url('assets/fonts/Inter-Regular.ttf');
}

.title-big{
  font-family: Cindie2;
  font-size:140px;
}
.title-small{
  font-family: Cindie2;
  font-size:20px;
  line-height:22px;
}
.inter-bold{
  font-family: Inter-Bold;
}
.inter-regular{
  font-family: Inter-Regular;

}
.size-txt{
  font-size:18px;
  line-height:22px;
}
.color-earth{
  color:#d0cbb0;
}
.color-kaki{
  color: #889122;
}
.color-black, a, .arrow{
  color: black;
}
/*----------------HOME----------------*/

*{
  padding:0;
  margin: 0;
  z-index:2;
}
.title{
  z-index:3;
  cursor: pointer;
}
.title .logo-container{
  position: fixed;
  width:100%;
  top: 32vh;
  padding:1vw;
  box-sizing: border-box;
}
.title .subtitle{
  position: fixed;
  width:100%;
  text-align: center;
}
.title-background-gradient{
  height: 100vh;
  top: 0;
  width: 100%;
  position: absolute;
  z-index: 1;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(232,230,217,1) 53%, rgba(208,203,176,1) 83%, rgba(208,203,176,1) 100%);
}
.background-earth{
  height: 100vh;
  top: 0;
  width: 100vw;
  position: absolute;
  z-index: 1;
  background: #d0cbb0;
  opacity: 0;
}
body{
  background: #caff5a;
}
/*----------------GO----------------*/

.go .title .logo-container{
  top: 1.5vw;
  transition: top .7s;
}
.go .background-earth{
  opacity: 1;
  transition: opacity 1s;
}
.go .content{
  top: 16vw;
  transition: top 1s;
}
.go .footer{
  opacity: 1;
  transition: opacity 1s;
}

/*----------------CONTENT----------------*/
.content{
  background-color: #caff5a;
  position: absolute;
  width:100%;
  top: 100vh;
  bottom:0;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  z-index:1;
  overflow-y: scroll;
}
.content .column{
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.content .column img{
  width:100%;
}
.content .paragraph{
  margin-bottom: 20px;
}
.content .interactive p:hover, a:hover{
  cursor:pointer;
  color:black;
}

.footer{
  display:none;
}

/*----------------RESPONSIVE----------------*/

@media (max-width: 1200px) {
  .content{
    grid-template-columns: repeat(2, 1fr);
  }
  .content .column:nth-child(1){
    order: 1;
  }
  .content .column:nth-child(2){
    order: 3;
  }
  .content .column:nth-child(3){
    order: 2;
  }
  .content .column:nth-child(4){
    order: 4;
  }
  .size-txt{
    font-size:16px;
    line-height:20px;
  }
}

@media (max-width: 700px) {
  .title .subtitle{
    display: none;
  }
  .content{
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 30px;
  }
  .content .column{
    width:100%;
  }
  .content .column:nth-child(1){
    order: 2;
  }
  .content .column:nth-child(2){
    order: 3;
  }
  .content .column:nth-child(3){
    order: 4;
  }
  .content .column:nth-child(4){
    order: 1;
  }
  .footer{
    display: block;
    position:fixed;
    width:100%;
    bottom:0;
    background-color: #74a5b8;
    z-index:3;
    padding:10px;
    opacity:0;
  }
 
}


/*----------------SELECTION----------------*/
::-moz-selection { /* Code for Firefox */
  color:black;
  background: #d0cbb0;
}

::selection {
  color:black;
  background: #d0cbb0;
}
