* {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient( #200016, #10001f);
    height: 100vh;
    font-family: cursive;
}

a {
    text-decoration: none;
    color: #fff;
}

header {
    position: fixed;
    width: 95%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

header .logo {
    font-size: 30px;
}

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

header li {
    padding-right: 30px;
}

header ul li a {
    padding: 6px 15px;
    border-radius: 20px;
}

header ul li a:hover {
    background-color: #fff;
    color: #200016;
}

.main {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(to top, #200016, transparent);
}

.main img {
    position: absolute;
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

#moon {
    mix-blend-mode: screen;
    transform: translateY(100px);
}

.simple {
    color: #fff;
    font-size: 25px;
    transform: translateY(-200px);
}

.contact {
    color: #fff;
    padding: 30px;
}

.contact h2 {
    margin: 20px;
    font-size: 30px;
}

.contact p {
    margin: 20px;
    font-size: 20px;
}