@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    color: white;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    overflow: hidden;
}

.header::before {
    content: "";
    background-color: black;
    position: absolute;
    width: 100%;
    height: 70px;
    z-index: -1;
    opacity: 0.4;
    /* border: 3px solid green; */
}

.header {
    /* border: 3px solid black; */
    height: 70px;
}

#logo {
    width: 15%;
    /* border: 3px solid green; */
}

#logo img {
    /* border: 3px solid red; */
    width: 200px;
    /* filter: invert(100%);  */
    margin-top: -15px;
    margin-left: -35px;
}


*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    font-size: 18px;
}

label .menu {
    position: absolute;
    right: 0px;
    top: -100px;
    z-index: 100;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50% 50% 50% 50%;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    box-shadow: 0 0 0 0 #000, 0 0 0 0 #000;
    cursor: pointer;

}

label .hamburger {
    position: absolute;
    top: 135px;
    left: 50px;
    width: 30px;
    height: 4px;
    background: #fff;
    display: block;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

label .hamburger:after,
label .hamburger:before {
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
}

label .hamburger:before {
    top: -10px;
}

label .hamburger:after {
    bottom: -10px;
}

label input {
    display: none;
}

label input:checked+.menu {
    box-shadow: 0 0 0 100vw #000, 0 0 0 100vh #000;
    border-radius: 0;

}

label input:checked+.menu .hamburger {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);

}

label input:checked+.menu .hamburger:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    bottom: 0;

}

label input:checked+.menu .hamburger:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;

}

label input:checked+.menu+ul {
    opacity: 1;
}

label ul {
    list-style: none;
    z-index: 200;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .25s 0s ease-in-out;
    transition: .25s 0s ease-in-out;
}

label a {
    margin-bottom: 1em;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: 250ms ease;
}

label a:hover{
    color: #b1b1b1;
}

.container {
    position: absolute;
    top: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: -2;
    /* border: 3px solid white; */
}

.container::before {
    content: "";
    position: absolute;
    background-image: url(../img/pexels-cottonbro-studio-5483064.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    z-index: -2;
    opacity: 0.8;
}

.container .heading {
    width: 520px;
    /* border: 3px solid white; */
}

.heading h3 {
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 5px;
}

.heading h1 {
    font-weight: 700;
    font-size: 6rem;
    position: relative;
    color: transparent;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.heading h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    border-right: 2px solid white;
    overflow: hidden;
    animation: heading 7s linear infinite;
}

@keyframes heading {

    0% {
        width: 0;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

.heading .btn {
    border: 2px solid rgb(112, 112, 112);
    background-color: transparent;
    padding: 7px;
    font-size: 2rem;
}

.heading .btn a {
    text-decoration: none;
}

.heading .btn:hover {
    /* background-color: rgb(0, 0, 0); */
    cursor: pointer;
    transition: 350ms ease-in-out;
    transform: scale(1.3);
}

.heading p {
    font-size: 0.8rem;
    margin-top: 30px;
    margin-bottom: 30px;
}