* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #1A1D1E;
}

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5) 50%, rgb(0, 0, 0, 0));
}

nav {
    width: 100%;
    position: absolute;
    padding: 20px 10%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo {
    width: 88px;
    cursor: pointer;
}

nav ul {
    display: inline-block;
}

nav ul li {
    list-style: none;
    display: inline-block;
    padding: 0 30px;
}


nav ul li a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
}

nav ul li a::after {
    content: "";
    height: 3px;
    width: 0%;
    background: cyan;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.5s;
}

nav ul li a:hover:after {
    width: 100%;
}

.content {
    text-align: center;
    color: white;
}

.content h1 {
    font-size: 120px;
    transition: 0.5s;
}

.content h1:hover {
    -webkit-text-stroke: 2px white;
    color: transparent;
}

.content a {
    color: white;
    font-size: 25px;
    border: 3px solid cyan;
    padding: 7px 30px;
    text-decoration: none;
    display: inline-block;
    margin: 25px 0px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.content a::after {
    content: "";
    height: 100%;
    width: 0%;
    background-color: white;
    border-radius: 25px;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    /* z-index: -1; */
}

.content a:hover:after {
    width: 100%;
    opacity: 0.3;
}

.background {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 1;
}