
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
}

button, input[type="submit"], input[type="reset"] {
    background-color: rgba(255, 0, 0, 0);
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

p {
    font-size: 18px;
}

.container {
    margin: 0 auto;
    width: 1100px;
}

.nav {
    width: 100%;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
}

.about {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.newCard {
    width: 100%;
    margin: 30px 0;
}

.draft, .publications, .composers {
    border: 1px solid black;
    border-radius: 12px;
    width: 32%;
    height: 500px;
    padding: 5px;
    overflow-y: scroll;
}

.item{
    margin-top: 5px;
    width: 100%;
    height: 30px;
    background-color: rgba(141, 133, 133, 0.94);
    border-radius: 10px;
    line-height: 30px;
    text-align: center;
    padding: 0 5px;
}

.itemDraft{
    margin-top: 5px;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-between;
}

.itemDraft a{
    height: 100%;
    background-color: rgba(141, 133, 133, 0.94);
    border-radius: 10px;
    line-height: 30px;
    text-align: center;
    width: 90%;
}

.itemDraft input{
    height: 100%;
    width: 30px;
    background-image: url("img/close.png");
    background-size: 100%,100%;
}

.newCard p {
    cursor: pointer;
    width: 300px;
    border: 1px dotted black;
    border-radius: 10px;
    line-height: 26px;
    text-align: center;
    margin-bottom: 10px;
}


.p {
    background-color: #6a6ada;
}

.item p {
    text-align: center;
    line-height: 30px;
}

.exit {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: black;
}

.draftEdit input{
    width: 290px;
    border-radius: 10px;
    background-color: rgba(141, 133, 133, 0.94);
}
.draftDell input{
    margin-top: 5px;
    height: 30px;
    width: 30px;
    background-image: url("img/close.png");
    background-size: 100%,100%;
}
.count{
    position: relative;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
}

.title{
    width: 100%;
    height: 30px;
    border-bottom: 2px solid black;
}
.title p{
    text-align: center;
    line-height: 30px;
}
