
body, h1, p{
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 3em;
}

p {
    font-size: 1.5em;
    max-width: 30em;
    margin: 10px auto;
    letter-spacing: 2px;
    font-weight: 500;
}

.container {
    position: absolute;
    height: 100vh;
    width: 100%;
    background-image: url(bg.jpg);
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.925);
    color: white;
    font-family: Poppins;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container .word-container {
    text-align: center;
}

.btn-container {
    margin: 25px 0 0;
}

.btn {
    position: relative;
    display: inline-block;
    margin: 0 10px;
    padding: 10px 17px;
    color: white;
    border: 1px solid white;
    text-decoration: none;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: white;
    transform: translate3d(0, 100%, 0);
    transition: 0.3s transform ease;
}

.btn:hover {
    color: rgb(255, 255, 255);
}

.btn:hover::before {
    transform: translate3d(0, 0, 0);
    z-index: -1;
}

.parallaxit {
    transition: 0.6s transform ease-out;
    transform: translate3d(var(--parallax-x), var(--parallax-y), 0px)
}