body{
	background-image: url("../image/fon/fon.jpg");
}
.button {
  text-decoration: none;
  display: inline-block;
  margin: 10px 20px;
  padding: 10px 50px;
  position: relative;
  border: 2px solid #f1c40f;
  color: #f1c40f;
  font-family: 'Montserrat', sans-serif;
  transition: .4s;
}
.button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  border: 2px solid rgba(0, 0, 0, 0);
  transition: .4s;
}
.button:hover:after {
  border-color: #f1c40f;
  width: calc(100% - 10px);
  height: calc(100% + 10px);
}


.textcenter{
	padding-top: 400px;
}


/* About Us */
.aboutus{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color:  rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.8s ease 0s; 
}

.aboutus:target {
    opacity: 1;
    visibility: visible;

}

.aboutus:target .aboutus__content{
    transform: translate(0px, 0px);
    opacity: 1;

}

.aboutus__body{
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
}
.aboutus__content{
    background-color: #fcfcfc;
    color: #211309;
    max-width: 800px;
    padding: 30px;
    position: relative;
    transition: all 0.8s ease 0s;
    opacity: 0;
    transform: translate(0px, -100%); 
}
.aboutus__close{
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
    color: #211309;
    text-decoration: none;
}
.aboutus__title{    
    font-size: 40px;
    margin: 0px 0px 1em 0px;

}

.aboutus_text{
    font-size:20px; 
}

.ktcompany{
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 15px;
    color: red
}

@media only screen and (max-width: 480px) {
	h1{
		font-size: 25px;
	}
}
