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


a {
    text-decoration: none;

}

#header-contacts {
    background-color: rgb(23, 19, 58);
    color: rgb(255, 255, 255);
    align-items: center;
    padding: 30px;
    justify-content: space-between;
    display: flex;
    border-color: gray;
    border-width: 2px;
}

.nav-contacts a {
    color: rgb(255, 255, 255);
    padding: 10px 15px;
    border-radius: 20px;
    transition: 0.3s ease;
    background-color: rgb(71, 0, 118);
    display: flex;
}
.nav-contacts a:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(71, 0, 118);
}

.form-contacts {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 28%;
    margin-bottom: 27%;
}

.main-contacts {
    background-color: rgb(23, 19, 58);
    color: white;
    padding: 20px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

#form-name,
#form-email,
#form-comment,
#button{
    width: 300px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

#button {
    background-color: rgb(71, 0, 118);
    color: white;
    font-weight: bold;
}
#button:hover{
    background-color: rgb(255, 255, 255);
    color: rgb(71, 0, 118);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#footer-contacts {
    background-color: rgb(65, 23, 98);
    color: rgba(255, 255, 255, 0.347);
    padding: 20px;
    text-align: center;
}