body {
    margin: 0;
    width: calc(100% - 20px);
    background-color: rgb(0, 0, 41);
    height: 100vh;
    color: white;
}

.input-wrapper {
    display: flex;
    justify-content: space-between;
    height: 90%;
}

.draft {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.draft input {
    width: 175px;
    background-color: rgba(102, 102, 102, 0.2);
    border-radius: 8px;
    border: 2px solid gold;
    height: 40px;
    position: relative;
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 24px;

}

.draft input::placeholder {
    position: relative;
    left: 10px;
}

.blue {
    position: relative;
    left: 20px;
    top: 20px;
    width: 48%;
}

.red {
    position: relative;
    right: 20px;
    top: 20px;
    width: 48%;
}

.champ-line {
    display: flex;
    height: 100%;
    align-items: center;
}

.display-champ {
    border: 1px solid black;
    display: flex;
    align-items: center;
    background-color: rgba(102, 102, 102, 0.2);
    width: 100%;
    height: 100%;
}

.display-champ img {
    border: 1px solid black;
    width: 125px;
    height: auto;
}