@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    transition: all .3s ease;
}
::-webkit-scrollbar{
    width: 0;
}
body {
    background:url(wa-bg.png);
    background-size: cover;
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    letter-spacing: 1.5px;
    
}

nav {
    padding: 20px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}

nav img {
    width: 80px;
    margin-right: 15px;
}

form {
    margin: 10px auto;
    margin-bottom: 23px;
    max-width: 500px;
    font-size: 16px;
    padding: 10px 15px;
}

form h1 {
    text-align: center;
    text-decoration: underline #4CAF50;
}

form label {
    display: block;
    margin: 9px 0 3px 0;
}
form label:hover {
    border-left: 2px solid #4CAF50;
    padding-left: 10px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px 15px;
    outline: none;
    font-size: 17px;
    border: none;
    border-radius: 10px;
    color: white;
    /* color: #1a1a1a; */
    background-color: #4e4e4eb0;
    border: 1.5PX solid #1a1a1a;
}
form input:focus,
form textarea:focus{
    border: 1.5PX solid #4CAF50;
}
form button {
    border-radius: 10px;
    background: linear-gradient(#4CAF50, green);
    color: white;
    padding: 10px 15px;
    margin-top: 5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 10px #000;
}
marquee{
    background-color: #4e4e4eb0;
    border-top: 2px solid #4CAF50;
    position: fixed;
    bottom: 0;
}
