* {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Righteous", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    height: 100vh;
    background: linear-gradient(135deg, #2c2c2c, #1e1e1e, #0d0d0d);
 }

header {
    background-color: #222;
    padding: 15px 0;

}

nav {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0 25px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: 25px;
}

nav ul li {
    font-size: 18px;
    letter-spacing: 1px;
    margin-left: 25px;
}

nav ul li a {
    color: #fff;
}

nav ul li a:hover {
    color: #890b0b;
}