﻿html, body {
    height: 100%;
    width: 100%;
}

.teamcont {
    width: 300px;
    height: 100px;
    border: 1px solid;
    margin: 1%;
    display: flex;
    flex-direction: row;
    border-radius: 5%;
}

.selection {
 
    display: flex;
    flex-direction: column;
    top: 0px;
    float: right;
    width: 66%;
}

.Teamicon {

    padding: 1%;
    width: 33%;
    height: 100%;
}
.Teamicon img {
    width: 90%;
    height: 90%;
   
}

.selection input {
   
    box-sizing: border-box;
    height: 20%;
    width: 95%;
    position: relative;
}

.selection input:focus {
    background-color:lightblue;
}

#redteam {
    border-color: red;
    background-color: red;
}

#orangeteam {
    border-color: orange;
}

#yellowteam {
    border-color: yellow;
}

#limeteam {
    border-color: lime;
}

#greenteam {
    border-color: green;
}

#cyanteam {
    border-color: teal;
}

#aquateam {
    border-color: cyan;
}

#blueteam {
    border-color: blue;
}

#purpleteam {
    border-color: purple;
}

#pinkteam {
    border-color: pink;
}

#teams {
    border: 1px solid black;
    padding: 1%;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    width: 95%;
    height: 25%;
    align-self: center;
}

.teamicon {
  background-color: salmon;
    width: 33%;
    height: 100%;
    border: none;
}
