* {
    font-family: 'Roboto';
}

body {
    background-color: #00cc00;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#next-pick-section {
    height: 50px;
    width: calc(100% - 80px);
    padding: 0;
    background-color: white;
    display: flex;
    overflow-x: auto;
    flex-shrink: 0;
    flex-grow: 0;
    position: absolute;
    top: 25px;
    left: 40px;
}

#next-pick-section::-webkit-scrollbar {
    display: none;
  }

.pick-spot {
    height: 100%;
    min-width: 300px;
    border-right: 1px solid black;
    margin: 0;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 10px;
}

.pick-spot div {
    padding-left: 10px;
}

.pick-spot h1 {
    margin: 0;
    font-size: 20px;
}

.pick-spot h2 {
    margin: 0;
    color: gray;
    font-size: 15px;
}

#roster-section {
    background-color: white;
    width: 80%;
    /* height: 80%; */
    border-radius: 20px;
    padding: 20px;
}

#roster-sec {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.roster-container {
    width: 40%;
}

.roster-slot {
    display: flex;
    flex-flow: row;
    justify-content: left;
    align-items: center;
    width: 100%;
}

.position {
    font-weight: bold;
    color: gray;
    font-size: 24px;
    margin: 0 10px 0 10px;
    padding: 0;
    /* width: 100px; */
}

.headshot {
    height: 50px;
    margin-right: 10px;
}

.player-name {
    color: black;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.team-name {
    margin: 0 0 0 10px;
    padding: 0;
    font-weight: bold;
    color: gray;
}

#roster-header {
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 20px 0 20px 50px;
}

#roster-header svg {
    margin-right: 20px;
}

#roster-header h1 {
    font-weight: bold;
    font-size: 36px;
    margin: 0;
}

#roster-header h2 {
    font-weight: 400;
    color: darkgray;
    font-size: 20px;
    margin: 0;
}

.animation {
    width: 100vw;
    height: 100vh;
    position: absolute;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 100vw;
    
}

.slide-in {
    transition: left 2s;
    left: 0;
    transition-timing-function: ease-out;
}

.slide-out {
    left: -100vw;
    transition-timing-function: ease-in;
}

#skewed {
    height: 300px;
    width: 90%;
    background: linear-gradient(180deg, rgba(14,0,255,1) 49%, rgba(255,0,0,1) 50%);
    transform: skew(-30deg);
    display: flex;
    justify-content: space-between;
    align-items:end;
}

.animation img {
    transform: skew(30deg);
    height: 150%;
}

.animation #name-div {
    transform: skew(30deg);
    height: 100%;
    width: 50%;
}

.animation #name-div h1 {
    color: white;
    font-size: 64px;
    margin: 20px 0 0 0;
}

.animation #name-div p {
    color: white;
    font-size: 24px;
    margin: 0;
}

.countdown {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #00cc00;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countdown h1 {
    color: white;
    font-size: 64px;
    font-weight: bold;
    margin: 0;
}