
img{
    position: absolute;
    margin-left: 0;
}

body {
    background: rgb(23, 23, 23);
}

.container {
    height: 100%;
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    
}


.board {
    display: flex;
    flex-wrap: wrap;
    height: 700px;
    width: 700px;
    /*border: 1px solid green;*/
}

.infoArea{
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 35rem;
    height: 700px;
    float:right;
    padding-left: 20px;
    padding-right: 10px;
    color:silver;
    font-size: 14pt;
    font-family: Arial;
    /*border: 1px solid green;*/
}

strong{
    color:chartreuse;
}


.buttonBox {
    display: flex;
    flex-wrap: wrap;
    height: 50px;
    width: 700px;
    padding-top: 10px;
    /*border: 1px solid red;*/
}

#msg{
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-family:Arial;
    padding-left: 20px;
    padding-top: 10px;
}

#SizeTextBox {
    width: 50px;
    font-size: 24px;
    text-align: center;
}
   

#title {
    color: rgb(212,175,55);
    font-size: 100px;
    height: 100vh;
    font-family: fantasy;
}

#trailer{
    width: 30px;
    height: 30px;
    background-color: rgba(144,238,144,.5);
    border-radius: 50px;

    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 10000;

    pointer-events: none;
    opacity: 0;
    transition: opacity 500ms ease;
}

body:hover > #trailer{
    opacity: 1;
}


