@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');

body{
    margin: 0px;
    font-family: "Itim", cursive;
}
button{
    border: 0px;
    background-color: transparent;
}
.vieuwport{
    height: 100vh;
    width: 100vw;
    position: relative;
}
.champions{
    height: 100vh;
    width: 100vw;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.champion0, .champion1, .champion2{
    width: 20vw;
    height: 50vh;
    position:relative;
}
.characterswitchmenu{
    position: absolute;
    height: 0px;
    text-align: center;
    width: 100%;
    font-size: 50px;
    overflow: hidden;
}
.changeto{
    position: absolute;
    overflow: hidden;
    height: 0px;
    width: 100%;
    background-color: grey;
    z-index: 1;
}
.change_to_champion{
    height: 50px;
    width: 100%;
}
.change_to_champion:hover{
    background-color: lightgrey;
}
.champion0:hover .characterswitchmenu,
.champion1:hover .characterswitchmenu,
.champion2:hover .characterswitchmenu{
    top: 40%;
    height: 20%;
    color: white;
}
.bannerimage{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.battlebutton{
    position: absolute;
    height: 10vh;
    width: 20vw;
    margin-left: 40vw;
    bottom: 5%;
    background-color: #666666;
    font-size: 7vh;
    text-align: center;
}
.championname{
    width: 100%;
    height: 50px;
    font-size: 40px;
    padding-left: 10px;
    text-transform: uppercase;
    color: white;
}
.championdamage,.championhealth,.championdefence,.championevasion{
    width: 100%;
    padding-left: 10px;
    color: white;
}
.abilities{
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100px;
}
.descriptionlocation{
    position: relative;
}
.abilitiescontainer{
    width: 100%;
    height: 10vh;
    background-color: #2c2828;
    display: flex;
    overflow: auto;
}
.ability1,.ability2,.ability3{
    height: 100%;
    aspect-ratio: 1/1;
    padding: 10px;
}
.abilityimage{
    background-color: #fff;
    width: 100%;
    height: 100%;
    border: grey 1px solid;
    border-radius: 5px;
}
.abilitydescription{
    position: absolute;
    overflow: auto;
    background-color: #000000e6;
    overflow: hidden;
    height: 0;
    width: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -300px;
    left: 0px;
    overflow-y: auto;
}
.abilityimageholder:hover + .abilitydescription,
.abilitydescription:hover,
.ability1:hover > .abilitydescription{
    height: 300px;
    width: 100%;
    color: white;
}