@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Jost:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Source+Code+Pro:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
}



body {
    height: 100vh;
    box-sizing: border-box;
    background-color: #070a13;
    color: #f1f5f9;
    display: flex;
    flex-direction: column;
}

header {
    height: 5rem;
    font-family: Source Code Pro, arial;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul {
    display: flex;
    align-self: center;
    justify-content: center;
}

nav ul li {
    margin: 0px 20px;
    list-style: none;
    position: relative;
}

nav ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    transition: 0.5s;
    width: 100%;
}

nav ul li:hover::after {
    box-shadow: 0px 0px 50px 2px #f1f5f9;
}

li a {
    color: #94a3b8;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
}

li a:hover {
    color: #f1f5f9;
}

li a.active {
    color: #f1f5f9;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1.4rem 0rem;
    height: 70%;
}

.main-text {
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.main-button {
    flex: 1;
}

main h1 {
    font-family: General Sans, arial;
    font-size: 7rem;
    text-transform: uppercase;
    line-height: 7rem;
    transition: 0.3s;
}

main h1:hover {
    -webkit-text-stroke: 1px #f1f5f9;
    color: transparent;
}

main p {
    color: #94a3b8;
    font-family: Source Code Pro;
    font-size: 1.45rem;
}

strong {
    color: #4f46e5;
}

main button {
    height: 3rem;
    margin-top: 2rem;
    display: inline-block;
    background-color: #e11d48;
    border: none;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.5), 0 6px 6px rgba(225, 29, 72, 0.5), 0 0 100px -10px #e11d48;
    transition: 0.3s;
}

main button:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 3px 3px rgba(225, 29, 72, 0.5), 0 3px 3px rgba(225, 29, 72, 0.5), 0 0 100px -10px #e11d48;
}

main button a {
    padding: 0.5em 1em;
    color: #f1f5f9;
    font-family: General Sans;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.05em;
    text-decoration: none;
}

footer {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


footer p {
    font-size: 1rem;
    font-family: Source Code Pro, arial;
    font-weight: 400;
    color: #94a3b8;
}

@media (max-width: 500px) {
    main h1 {
        font-size: 5rem;
        line-height: 5rem;
    }

    main p {
        color: #94a3b8;
        font-family: Source Code Pro;
        font-size: 1rem;
    }

    nav ul li {
        margin: 0px 12px;
        list-style: none;
        position: relative;
    }

    main button {
        margin-top: 0rem;
    }
}