* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100vh;
    color: #ffffffda;
    background: #333;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.navbar {
    z-index: 1;
    position: absolute;
    left: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    gap: 30px;
    display: flex;
    background: #302f2f;
    padding: 20px 35px;
    margin-top: 25px;
    border-radius: 40px;
}

nav ul li {
    list-style: none;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease-in;
}

nav ul li>a {
    text-decoration: none;
    color: #c1bfbf;
}

ul li:hover, li>a:hover {
    scale: 1.2;
    color: #5c5a5a;
}

.main{
    position: relative;
    text-align: center;
    top: 200px;
    font-size: 26px;
    line-height: 1.5;
}

.circle {
    margin-top: -90px;
    position: absolute;
    width: 350px;
    height: 400px;
    border-bottom-right-radius: 500px;
    background: #ffffff;
    opacity: 0.1;
    z-index: 1;
}

.main h1 {
    z-index: 2;
    position: relative;
    font-size: 4.2rem;
}

.main p {
    z-index: 2;
    color: #ffffffbe;
    position: relative;
    font-size: 1.5rem;
    line-height: 1.2;
}

.main .note {
    margin-top: 20px;
    color: #0000006e;
    font-weight: 700;
}

button {
    width: 100px;
    height: 43px;
    outline: 0;
    border: 0;
    margin-top: 30px;
    cursor: pointer;
    background-color: #5c5a5a;
    color: #d0d0d0;
    font-weight: 500;
    border-radius: 12px;
    transition: 0.3s ease-out;
    font-size: 22px;
}

button:hover {
    background: transparent;
    color: #c1bfbf;
    scale: 1.2;
    border: 1px solid #727070;
    border-radius: 10px;
}

