
* {
    box-sizing: border-box;
}

html {
    font-family: Helvetica, Arial;
}

h1 {
    text-align: center;
    font-size: 72px;
    background: linear-gradient(to right, #fbff00, #ff0000);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
    margin-top: 10px;
}

.counter {
    display:flex;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    background: linear-gradient(to right, #ff9900, #ff9900);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0px;

}

.center {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    
}

#gameboard {
    padding: 5px;
    display: inline-block;
    background-color: rgb(0, 0, 255);
    border-radius: 20px;
}

.row {
    display: flex;
}

.field {
    /* padding: 3px;
    color: white;
    border: solid 1px red; */
    color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
    border: solid 4px rgb(0, 0, 255);
    padding: 10px;
    border-radius: 90px;
    width: 80px;
    height: 80px;
    transition: all .3s;
}

.field:hover {
    color: lightgrey;
    background-color: lightgrey;
}


body {
    position: relative;
}

.bild1 {
    height: 600px;
    width: 400px;
}

.bild2 {
    height: 450px;
    width: 400px;
}

.board {
    display: flex;
    align-items: end;
    justify-content: end;
}


.background {
    position: fixed;
    top: 0em;
    left: 0em;
    width: 100vw;
    height: 100vh;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
 }

 .winnbox{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width:auto;
    height: auto;
    z-index: 4;
    text-align: center;
    font-size: 30px;
    border-radius: 30px;
    background-color: rgb(255, 244, 230);
    display: flex;
    flex-direction: column;
    align-items: center;
 }

 .winner{
    margin: 20px;
 }

 .reloadbutton{
    display: block;
    color:rgb(255, 255, 255) ;
    background-color: rgb(255, 145, 0);
    text-decoration: none;
    text-align: center;
    width: 200px;
    height: 44px;
    border-radius: 14px;
    line-height: 44px;
    font-size: 24px;
    margin: 20px;
 }