/*Button*/

.button-main {
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 15px 40px;
    color: white;
    border: 1px solid #cd090a;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s linear;
    margin-left: 10px;
    margin-top: 20px;
    }
}
.button-main:before, .button-main:after, .link-content:before, .link-content:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 15px;
    height: 15px;
    transition: .3s linear;
}
.button-main:before {
    left: -1px;
    top: -1px;
    border-left: 1px solid #614DFF;
    border-top: 1px solid #614DFF;
}
.button-main:after {
    bottom: -1px;
    right: -1px;
    border-bottom: 1px solid #614DFF;
    border-right: 1px solid #614DFF;
}
.link-content:after {
    right: -1px;
    top: -1px;
    border-right: 1px solid #614DFF;
    border-top: 1px solid #614DFF;
}
.link-content:before {
    left: -1px;
    bottom: -1px;
    border-bottom: 1px solid #614DFF;
    border-left: 1px solid #614DFF;
}
.button-main:hover {
    color: #614DFF;
    border-color: #614DFF;
}

.button-main-2 {
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 15px 40px;
    color: white;
    border: 1px solid #cd090a;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s linear;
    margin-top: 10px ;
    margin-left: 10px;
    left: 0px;
  
}   
.button-main-2:before, .button-main-2:after, .link-content:before, .link-content:after {
    position: absolute;
    z-index: 1;
    width: 15px;
    height: 15px;
    transition: .3s linear;
}
.button-main-2:before {
    left: -1px;
    top: -1px;
    border-left: 1px solid #614DFF;
    border-top: 1px solid #614DFF;
}
.button-main-2:after {
    bottom: -1px;
    right: -1px;
    border-bottom: 1px solid #614DFF;
    border-right: 1px solid #614DFF;
}
.button-main-2:hover {
    color: #614DFF;
    border-color: #614DFF;
}

.color-button {
    color: red;
}




/* 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; 
}
.update_title {    
    font-size: 25px;
    margin: 0px 0px 1em 0px;

}
.klauday_title {
    font-size: 20px;
}