a {
    text-decoration: none;
}

* {
    margin: 0;
    font-family: sans-serif;
}

section {
    position: relative;
}

header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

body {
    background-color: #111;
}

.condent {
    /* background: white; */
    left: 30%;
    right: 30%;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    text-align: center;
}

@font-face {
    font-family: originalFont;
    src: url("../organical.ttf");
}

.condent h1 {
    font-family: originalFont;
    color: turquoise;
    font-size: 6vw;
    font-weight: bold;
}

.condent h4 {
    font-family: originalFont;
    color: tomato;
    opacity: 0.8;
    font-size: 2vw;
}

.btns {
    top: 12vw;
    background: linear-gradient(to left top, rgb(27, 27, 27) 50%, rgb(27, 27, 27) 50%);
    border-style: none;
    color: #fff;
    outline: none;
    position: relative;
    padding: 0px;
    overflow: hidden;
    transition: all .5s;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, .3);
}

.btns span {
    position: absolute;
    display: block;
}

.btns span:nth-child(1) {
    height: 3px;
    width: 200px;
    top: 0px;
    left: -200px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), turquoise);
    border-top-right-radius: 1px;
    border-bottom-right-radius: 1px;
    animation: span1 2s linear infinite;
    animation-delay: 1s;
}

@keyframes span1 {
    0% {
        left: -200px
    }
    100% {
        left: 200px;
    }
}

.btns span:nth-child(2) {
    height: 70px;
    width: 3px;
    top: -70px;
    right: 0px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), turquoise);
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 1px;
    animation: span2 2s linear infinite;
    animation-delay: 2s;
}

@keyframes span2 {
    0% {
        top: -70px;
    }
    100% {
        top: 70px;
    }
}

.btns span:nth-child(3) {
    height: 3px;
    width: 200px;
    right: -200px;
    bottom: 0px;
    background: linear-gradient(to left, rgba(0, 0, 0, 0), turquoise);
    border-top-left-radius: 1px;
    border-bottom-left-radius: 1px;
    animation: span3 2s linear infinite;
    animation-delay: 3s;
}

@keyframes span3 {
    0% {
        right: -200px;
    }
    100% {
        right: 200px;
    }
}

.btns span:nth-child(4) {
    height: 70px;
    width: 3px;
    bottom: -70px;
    left: 0px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0), turquoise);
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
    animation: span4 2s linear infinite;
    animation-delay: 4s;
}

@keyframes span4 {
    0% {
        bottom: -70px;
    }
    100% {
        bottom: 70px;
    }
}

.btns:hover {
    transition: all .5s;
    transform: rotate(-3deg) scale(1.1);
    box-shadow: 0px 3px 5px rgba(0, 0, 0, .4);
}

.btns:hover span {
    animation-play-state: paused;
}

.btn2 {
    position: absolute;
    padding: 2vh 1vw;
    width: 14vw;
    right: 3vw;
    font-size: 1.25vw;
    color: rgb(255, 255, 255);
    border-radius: 0.2vw;
    cursor: pointer;
    font-weight: 600;
}

.btn1 {
    position: absolute;
    left: 3vw;
    padding: 2vh 1vw;
    width: 14vw;
    font-size: 1.25vw;
    color: rgb(255, 255, 255);
    border-radius: 0.2vw;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width:768px) {
    .condent {
        left: 10%;
        right: 10%;
        top: 45%;
    }
    .condent h1 {
        font-size: 12vw;
    }
    .condent h4 {
        font-size: 5vw;
    }
    .btns {
        width: 20vw;
        font-size: 2.5vw;
        top: 23vw;
    }
    .btn1 {
        left: 15vw;
    }
    .btn2 {
        right: 15vw;
    }
}