*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.chan {

    align-items: center;
    color:  rgb(252, 175, 9);
    


}

h1{
    text-align: center;
    color: rgb(2, 2, 48);
}

input {
    margin-left: 6px;
    width: 300px;
    border-radius: 5px;
}

.contform {
    position: relative;
     margin-left: 35%;
     margin-right: 40%;
    background-color: rgb(2, 2, 48);
    width: 400px;
    height: auto;
    border-radius: 10px;
}

form {
    margin: 2rem;
    padding: 1rem;
    justify-content: center;
}

.button{
 margin-left: 35%;
 background-color: rgb(252, 175, 9);
 width: 100px;
 height: 20px;
 cursor: pointer;
 color: white;
 font-size: 0.8rem;
 justify-content: center;
 transition: ease-in 2s;
 border-radius: 10px;
}
 
.button:hover {
 color: black;
 background-color: white;
}



input:focus{
   outline: none;
   border-color: rgb(252, 175, 9);
}

#chant:focus{
   outline: none;
   border-radius: 10px;
   border: 5px solid rgb(252, 175, 9);
}
