html{
  width: 100%;
  height: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}
body{
  background: black;
}

.content__wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%
}

.conetnt-text__container{
  text-align: left;
  margin: 30px 0;
}

.content-text__white{
  color: white;
  margin: 0;
  font-weight: 300;
  margin-bottom: 0.25rem;
}

h1{
  display: block;
  color: white;
  margin: 0;
}

h2{
  display: block;
  color: white;
  margin: 0;
}

.about_link{
  opacity: 0.9;
  cursor: pointer;
  border-bottom: 2px solid blue;
  text-decoration: none;
  margin: 2rem;
}

.about_link:hover{
  opacity: 0.1;
  transition: all 1s;
  cursor: pointer;
  border-bottom: 2px solid red;
}

.about_link__none{
  opacity: 0.9;
  cursor: pointer;
  border-bottom: none;
  text-decoration: none;
  margin: 2rem; 
  border-bottom: 2px solid yellow;
}

.about_link__none:hover{
  opacity: 0.1;
  transition: all 1s;
  border-bottom: 2px solid red;
  cursor: pointer;
}

.whatwedo_link{
  opacity: 0.9;
  cursor: pointer;
  border-bottom: 2px solid blue;
  text-decoration: none;
  margin: 2rem;
}

.whatwedo_link:hover{
  opacity: 0.1;
  transition: all 1s;
  cursor: pointer;
  border-bottom: 2px solid yellow;
}

.whatwedo_link__none{
  opacity: 0.9;
  border-bottom: none;
  text-decoration: none;
  margin: 2rem; 
}

footer{
  color: white;
  width: 100%;
  text-align: center;
  padding: 30px 0;
  position: absolute;
  bottom: 0;
  font-weight: 100;
  font-size: 12px;
}

/* RESET BELOW */

/* mobile */

@media only screen and (min-width: 600px) {
  .content__container{
    width: 100%;
  }
  .conetnt-text__container{
    text-align: center;
    margin: 30px 0;
    font-size: 18px;
  }
  
  .content-text__white{
    color: white;
    margin: 0;
    font-weight: 300;
    margin-bottom: 0.25rem;
  }
  
  h1{
    display: block;
    color: white;
    margin: 0;
  }
  
  h2{
    display: block;
    color: white;
    margin: 0;
  }
  
  .about_link{
    opacity: 0.9;
    cursor: pointer;
    border-bottom: 2px solid blue;
    text-decoration: none;
    margin: 2rem;
    font-size: 24px;
  }
  
  .about_link:hover{
    opacity: 0.1;
    transition: all 1s;
    cursor: pointer;
    border-bottom: 2px solid red;
  }
  
  .about_link__none{
    text-align: center;
    opacity: 0.9;
    cursor: pointer;
    border-bottom: none;
    text-decoration: none;
    margin: 2rem; 
    border-bottom: 2px solid yellow;
    font-size: 24px;
  }
  
  .about_link__none:hover{
    opacity: 0.1;
    transition: all 1s;
    border-bottom: 2px solid red;
    cursor: pointer;
  }
  
  .whatwedo_link{
    opacity: 0.9;
    cursor: pointer;
    border-bottom: 2px solid blue;
    text-decoration: none;
    margin: 2rem;
    font-size: 24px;
  }
  
  .whatwedo_link:hover{
    opacity: 0.1;
    transition: all 1s;
    cursor: pointer;
    border-bottom: 2px solid yellow;
  }
  
  .whatwedo_link__none{
    opacity: 0.9;
    border-bottom: none;
    text-decoration: none;
    margin: 2rem; 
  }
  
  footer{
    color: white;
    width: 100%;
    text-align: center;
    padding: 30px 0;
    position: absolute;
    bottom: 0;
    font-weight: 100;
    font-size: 12px;
  }
  
}
