*{
    margin: 0px;
    border: 0px;
    padding: 0px;
}

body{
    width: 100%;
    height: 100%;
}

.ipad{
    width: 768px;
    height: 1024px;
}

.iphone{
    width: 320px;
    height: 480px;
}

#section{
    margin: auto;
    position: relative;
}

#board{
    position: relative;
}

#board.iphone{
    background-image: url(../images/wood_iphone.jpg);
}

#board.ipad{
    background-image: url(../images/wood_ipad.jpg);
}
button, #timer{
    position: absolute;
    font-family: Georgia;
    font-size: 20px;
}
button{
    padding: 10px;
    border-radius: 8px;
    background-color: goldenrod;
}

.iphone button{
    padding: 5px;
    border-radius: 5px;
    font-size: 10px;
}

.iphone #timer{
    color: white;
    font-size: 12px;
}

#time_remaining{
    color: white;
    position: absolute;
    top: 3px;
    left: 10px;
}
.iphone #time_remaining{
    font-size: 12px;
}
#message{
    position: absolute;
    color: yellow;
    top: 20px;
    left: 10px;
    opacity: 0;
     -webkit-transition: opacity 1s ease-in;
     -moz-transition: opacity 1s ease-in;
     transition: opacity 1s ease-in;
}
.showmessage{
    opacity: 1 !important;
}
.hidemessage{
    opacity: 0 !important;
}
#new_game{
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
}
#give_up{
    position: absolute;
    top: 10px;
    right: 10px;
}
#clear{
    position: absolute;
    bottom: 42%;
    left: 10px;
}
#accept{
    position: absolute;
    bottom: 42%;
    right: 10px;
}
#wordlist{
    position: absolute;
    left: 0px;
    bottom: 10px;
    width: 100%;
    height: 35%;
    overflow: auto;
/*    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-pack: justify;
*/}
#col_0{
    float: left;
    width: 30%;
    height: 100%;
    margin-left: 2%;
}
#col_1{
    float: left;
    width: 30%;
    height: 100%;
    margin-left: 3%;
}
#col_2{
    float: left;
    width: 30%;
    height: 100%;
    margin-left: 3%;
}
.answer, .placeholder, .missed{
    font-family: Georgia;
    font-size: 12px;
    padding-bottom: 4px;
}
.iphone .answer, .iphone .placeholder,  .iphone .missed{
    font-size: 10px;
}
.correct{
    font-size: 20px;
    color:#0c0;
}
.missed{
    font-size: 20px;
    color: red;
}
.placeholder{
    letter-spacing: .4em;
    padding-left: 10px;
}
.iphone .placeholder{
    padding-left: 12px;
}
