{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

:root{
    --primary-color : #80858157;
    --secondary-color : #1b1f2b ;
    --text-color : #e0e0e0 ;

}

body {
    background-color: var(--primary-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 40%;
    height: 500px;
    background-color: var(--secondary-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;

}

h2 {
    color: var(--text-color);
    font-size: 35px;
    margin-bottom: 25px;

}

.inputbox {
    width: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: large;

}

input {
    width: 200;
    background: var(--primary-color);
    padding: 15px;
    outline: none;
    border: 1px solid var(--text-color);
    margin: 10px;
    color: rgb(8, 8, 8);
}
button {
    width: 30%;
    height: 40px;
    margin-top: 10px;
    background-color: #0bf072;
    padding: 2px;
    color: wheat;

}
textarea {
    width: 330px;
    outline: none;
    padding: 10px;

}