html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(135deg, #000000, #2b2b2b) !important;
    color: #5865F2;
}
p, h1, h2, h3 {
    color: white;
}
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #5865F2, #404EED);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(88,101,242,0.6);
}

.btn:active {
    transform: scale(0.98);
}
button {
    display: inline-block;
    padding: 14px 28px;
    background: red;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

    
button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(88,101,242,0.6);
}
.btns {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0a2f1d, #14532d);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.btns:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(88,101,242,0.6);
}
textarea {
    border-radius: 12px;
    background-color: #f9f9f9;
}
    
