* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e2e8f0;
    text-align: center;
}
 
h1 {
    text-align: center;
    font-family: Roboto Condensed;
    margin: 90px 0 0 0;
    font-size: 70px;
    background: linear-gradient(90deg, #38bdf8, #080973);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
 
div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65vh;
}
 
nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 30px;
}
 
p {
    font-family: Roboto Condensed;
    font-size: 15px;
    color: #eaf2fc;
}
 
a {
    text-decoration: none;
    margin-right: 20px;
    color: #e2e8f0;
    font-family: Roboto Condensed;
    font-size: 18px;
    margin-top: 20px;
    background: linear-gradient(90deg, #38bdf8, #0004ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}