@font-face {
    font-family: 'Alatsi';
    src: url("font/Alatsi-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    background: rgb(231, 56, 61);
    background: linear-gradient(0deg, rgba(231, 56, 61, 1) 25%, rgba(47, 113, 226, 1) 75%) fixed no-repeat;
    margin: 0px;
    padding: 0px;
    font-family: 'Alatsi';
}

.header {
    overflow: hidden;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #353333;
}

.header a {
    font-family: 'Alatsi';
    padding: 12px;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 3vh;
    line-height: 25px;
    border-radius: 4px;
    word-spacing: 2px;
}

.logo-header {
    display: inline-block;
}

#logo {
    height: 95px;
    display: block;
}

.header a:hover {
    background-color: dimgrey;
    color: white;
}

.header-right {
    float: right;
    margin-top: 40px;
}

#cardsManager {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding-top: 15ch;
    padding-left: 40ch;
}

#cardsManager img {
    height: 20ch;
    padding-right: 15ch;
    transition: all 0.2s ease-out;
}

#cardsManager img:hover {
    transition-duration: 1s;
    transform: scale(1.1);
}

#cardName {
    color: white;
    font-family: 'Alatsi';
    padding-right: 13ch;
}

.tableDeckManager {
    margin-left: auto;
    margin-right: auto;
    margin-top: 25ch;
}

.tableDeckManager img {
    height: 20ch;
    transition: all 0.2s ease-out;
}

.tableDeckManager img:hover {
    transition-duration: 1s;
    transform: scale(1.1);
}

#btnDeckManager {
    text-align: center;
    padding-top: 10ch;
}

#btnAdd {
    background: #353333;
    color: white;
    border: 0;
    font-family: 'Alatsi';
    height: 7ch;
    width: 18ch;
    font-size: 2ch;
    border-radius: 2.5ch;
    transition: all 0.2s ease-out;
}

#btnAdd:hover {
    transition-duration: 1s;
    transform: scale(1.1);
}

#deckIcon {
    padding-left: 135vh;
    margin-bottom: -10vh;
}

#contentInElixir {
    background-image: url("../img/deckManager/elixir.png");
    height: 100px;
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-top: 20px;
    color: white;
    font-size: 2vh;
}

#inputDeck {
    text-align: center;
    margin-top: 50px;
}

#inputName {
    align-items: center;
    max-width: 300px;
    background: #fff;
    border: 1px solid #a0a0a0;
    border-radius: 4px;
    padding-left: 0.5rem;
    overflow: hidden;
    text-align: center;
    font-size: 16px;
    font-family: 'Alatsi';
    margin-right: 50px;
}

#txtDescription {
    height: 100px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
    font-family: Alatsi;
}

#deckView div {
    margin-top: 10ch;
    display: flex;
    justify-content: center;
}

#deckView img {
    height: 130px;
}

#deckView th {
    color: white;
    font-size: 2.5ch;
    font-weight: normal;
}

#deckView p {
    color: white;
    font-size: 1.9ch;
    font-weight: normal;
    text-align: center;

}

