body{
    margin: 0;
    font-family: monospace, Calibri, Arial, sans-serif;
    background: url("assets/background.png") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.body-container{
    height: 750px;
    width: 1000px;
    margin-top: 1%;
    background-color: rgba(0, 10, 2, 0.506);
    backdrop-filter: blur(1
    
    0px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.heading-container{
    background-color: rgba(9, 125, 40, 0.187);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    height: 7%;
    width: calc(100% - 30px);
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.heading-container img{
    position: absolute;
    height: 70%;
    left: 2%;
}

.heading-container h1{
    color: white;
    font-size: 2rem;
    margin: 0;
}

.content-container{
    /* background-color: rgb(7, 16, 84); */
    height: 100%;
    width: calc(100% - 30px);
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.poke-info{
    /* background-color: hsl(35, 100%, 22%); */
    height: 50%;
    width: calc(100% - 30px);
    margin: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

.info{
    /* background-color: hsl(134, 85%, 16%); */
    background-color: rgba(7, 86, 19, 0.302);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    height: 90%;
    width: calc(100% - 30px);
    padding-left: 20px;
    margin: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.poke-image{
    /* background-color: rgb(15, 6, 64); */
    background-color: rgba(8, 39, 102, 0.437);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin: 0 0 0 7px;
    height: 170px;
    width: 170px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poke-data{
    /* background-color: rgb(15, 6, 64); */
    background-color: rgba(6, 28, 87, 0.504);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin: 7px;
    height: calc(100% - 5%);
    width: 50%;
    padding-right: 15px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    padding-left: 20px;
    overflow: hidden;
}

.poke-selector{
    /* background-color: hsl(35, 100%, 22%); */
    height: 10%;
    width: calc(100% - 30px);
    margin: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

.selector{
    /* background-color: hsl(134, 85%, 16%); */
    background-color: rgba(5, 111, 33, 0.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 90%;
    width: calc(100% - 30px);
    margin: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.poke-label,.poke-button{
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 5px 11px;
    color: white;
    font-size: 18px;
    margin: 6px;
    transition: background-color 0.2s ease-in-out;
}

.poke-button{
    font-size: 18px;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.poke-button:hover{
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.poke-button:active {
  transform: scale(1.1);
}

.poke-attributes{
    /* background-color: hsl(35, 100%, 22%); */
    height: 10%;
    width: calc(100% - 30px);
    margin: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

.attributes{
    /* background-color: hsl(134, 85%, 16%); */
    background-color: rgba(5, 111, 33, 0.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 80%;
    width: calc(100% - 30px);
    margin: 10px;
    gap: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

input[type="checkbox"]{
    appearance: none;
    width: 50px;
    height: 25px;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

input[type="checkbox"]::before{
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    background-color: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.25s cubic-bezier(.68,-0.55,.27,1.55);
    
}

input[type="checkbox"]:checked{
    background-color: rgba(6, 138, 174, 0.596);
}
input[type="checkbox"]:checked::before{
    transform: translate(25px);
}

label{
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
}

.winner-display{
    /* background-color: hsl(134, 85%, 16%); */
    background-color: rgba(10, 57, 151, 0.258);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px; 
    height: 20%;
    width: 40%;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.winner-display p{
    margin-top: 2px;
    font-size: 1.4rem;
}