header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background-color: #1c1c1c;
    border-bottom: 1px solid #2e2e2e
}
.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 6px;
}
nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 24px;
}
nav a {
    color: #888;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}
nav a:hover {
    color: #fff;
}
.buttons {
    display: flex;
    gap: 10px;
}
.login {
    background: transparent;
    border: 1px solid #2e5eff;
    color: #2e5eff;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.login:hover {
    background: #2e5eff;
    color: #fff;
}
.signup {
    background: #2e5eff;
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}
.signup:hover {
    background: #1c46d9;
}
.dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 45px;
    background: #1c1c1c;
    border: 1px solid #2e2e2e;
    border-radius: 6px;
    overflow: hidden;
    min-width: 160px;
    z-index: 10;
}
.dropdown a {
    display: block;
    padding: 10px 15px;
    color: #888;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.dropdown a:hover {
    background: #2e5eff;
    color: #fff;
}
.dropdown.show {
    display: block;
}

body {
    margin: 0;
    height: 100vh;
    background-image: url("https://fireart.studio/wp-content/uploads/2021/02/frame-188-5.jpg");
    background-color: #000;
    font-family: Arial, sans-serif;
    text-align: center;
    color: aliceblue;        
}
h1{
    text-align: center;
    margin-top: 20px;
}
h2{
    size: 5px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #2e5eff;
    text-shadow: 2px 2px 4px #000000;
}
p{
    margin: 20px;
    font-size: 18px;
    line-height: 1.6;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}
