/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background: url('../images/website background.png') no-repeat center center/cover; /* Adjusted path */
}

.container {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn.primary {
    background: linear-gradient(45deg, #ff8a00, #e52e71);
    color: #ffffff;
}

.btn.secondary {
    background: #ffffff;
    color: #e52e71;
}

.btn.primary:hover {
    background: #e52e71;
}

.btn.secondary:hover {
    background: #ff8a00;
    color: #ffffff;
}

a {
    color: #ff8a00; /* Adjusted link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
