body {
    background-color: #1E1E1E;
    font-family: Helvetica, Arial;
}

.teamDisplay {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    text-align: center;
    font-size: 3.3em;
    margin-top: 0;
    margin-bottom: 0.2em;
    color: #fff;
}

.logo {
    display: block;
    margin: 0 auto;
    width: 400px;
}

.team-card {
    width: 100%;
    height: 100px;
    position: relative;
    margin: auto;
}

.team-card-list {
    width: 500px;
    margin: auto;
    padding: 0;
    list-style: none;
}

input[type=text] {
    width: 100%;
    line-height: 100px;
    text-align: center;
    vertical-align: middle;
    border: 0;
    font-size: 3em;
    color: #FFFFFF;
    background-color: transparent;
}

.team-card .DragHandler {
    display: none;
}

.team-card:hover .DragHandler {
    position: absolute;
    top: 10px;
    left: 10px;
    display: block;
    width: 18px;
    height: 11px;
    opacity: .25;
    margin-right: 20px;
    cursor: grab;
    background: linear-gradient(180deg,#000,#000 20%,#888 0,#888 40%,#000 0,#000 60%,#888 0,#888 80%,#000 0,#000);
}

.team-card .card-point {
    position: absolute;
    display: none;
    right: 240px;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background-color: red;
    z-index: 1;
    transform: rotate(45deg);
}

.team-card:not(:last-child) .card-point {
    display: inline-block;
}

.button-wrapper {
    text-align: center;
}

.big-button {
    width: 250px;
    height: 50px;
    border: none;
    font-size: 1.5em;
    text-decoration: none;
    margin-bottom: 10px;
    text-align: center;
    line-height: 40px;
    vertical-align: middle;
    color: #FFFFFF;
}

button {
    border-radius: 3px;
}

.another-btn {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    background-color: rgb(49, 127, 235);
    color: white;
    cursor: pointer;
}

li:first-child {
    border-radius: 3px 3px 0 0;
}

li:last-child {
    border-radius: 0 0 3px 3px;
}

.add-btn {
    background: linear-gradient(90deg, rgba(154,192,47,1) 0%, rgba(88,89,91,1) 80%);
    margin-left: 1px;
}

.shuffle-btn {
    margin-right: 1px;
    background: linear-gradient(270deg, rgba(154,192,47,1) 0%, rgba(88,89,91,1) 80%);
}

.team-card .close-btn {
    background-image: url('./icons/close-icon.png');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 20px;
    height: 20px;
    margin: 2px auto;
    position: absolute;
    right: 3px;
    top: 3px;
    line-height: normal;
    border: none;
    cursor: pointer;
    display: none;
}

.team-card:hover .close-btn {
    display: block;
}

.team-card .lock-btn {
    width: 20px;
    height: 20px;
    margin: 0;
    position: absolute;
    right: 3px;
    top: 23px;
    line-height: normal;
    cursor: pointer;
    display: none;
}

.team-card:hover .lock-btn {
    display: block;
}

.link-land {
    float: right;
    margin-right: 200px;
}

.link-land-buttons button {
    height: 20px;
    width: 50px;
    margin: 3px 3px 0 0;
}

.view-link {
    display: block;
}

.link-input {
    margin-top: 5px;
    float: right;
}

.jokeOfTheDay {
    color: white;
    font-family: serif;
    font-style: italic;
    font-size: 36px;
    margin: 24px auto;
    text-align: center;
}

.team-card .notepadIcon {
    width: 20px;
    height: 20px;
    margin: 0;
    position: absolute;
    right: 3px;
    top: 48px;
    line-height: normal;
    cursor: pointer;
    display: none;
}

.team-card:hover .notepadIcon.noNotes, .notepadIcon.hasNotes {
    display: block;
}

.NotepadIcon.hasNotes g {
    animation: pulse 1s linear 0s infinite alternate;
}

@keyframes pulse {
  0% {
    fill: lightcoral;
  }
  100% {
    fill: darkred;
  }
}

.noteText {
    position: absolute;
    left: 550px;
    width: 300px;
    height: 100px;
}

a {
    color: gold;
}

a:visited {
    color: goldenrod;
}

a:hover {
    color: palegoldenrod;
}

a:active {
    color: orangered;
}
