@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,500;0,800;1,500;1,700&display=swap');
#testimg{
   border: 2px solid black;
   width: 100%;
   height: 100%;
}
body{
  background-color: black;
  font-family: Raleway, Arial, Helvetica, sans-serif;
}
input{
    background-color: white;
    color: black;

}
.empty{
    background-color: white;
}
.left{

    right: 0px;
   
}
.column-wrapper{
    position: fixed;
    top: 150px;
    height: 500px;
    width: 30%;
}
.column-wrapper img{
    width: 100%;
}
.right{
    left: 0px;
}
.testimg{
    border: 2px solid black;
    width: 100%;
    height: 100%;
}
.header-bar{
    color: black;
    background-color: white;
    border: 4px solid darkslategrey;
    border-radius: 4px; 
    box-sizing: inline-block;
    width: 60%;
    margin-left: 20%;
    text-align: center;
    padding-bottom: 5px;
    
}
#game-win{
    display: none;
    position: absolute;
    top: 10rem;
    margin-left: 25%;
    z-index: 10;
    color: black;
    background-color: white;
    padding: 10px;
    border: 2px solid grey;
    border-radius: 4px;
    max-width: 50%;
    
}
#game-win div{
    margin: 0 0 1rem 2rem;

}
#game-win .close-btn{
    position:absolute;
    top: 2px;
    right: 2px;
    color: red;
    background-color: white;
    border: 1px solid red;
    border-radius: 5px;
    padding: 1px 2px 1px 2px;
}
.close-btn:hover{
    cursor: pointer;
}
.header-bar h3, .header-bar p{
    margin-left: 1rem;
}
#img-frame{
    margin: 5px auto;
    width: 750px;
    height: 750px;
    border: 4px solid darkslategrey;
    border-radius: 4px;
}
#tile-frame{
    box-sizing: border-box;
    display: inline-block;
    width: 750px;
    height: 750px;

}
.tile9{
    box-sizing: border-box;
    border: 2px solid white;
    display: inline-block;
    width: 250px;
    height: 250px;
    background-size: 750px 750px;
}
.tile9:hover, .tile5:hover{
    cursor: pointer;
}
.tile5{
    box-sizing: border-box;
    border: 2px solid white;
    display: inline-block;
    width: 150px;
    height: 150px;
    background-size: 750px 750px;
}


