*{ 
    margin : 0;
    padding: 0;
    font-family:'Times New Roman', Times, serif;
    box-sizing: border-box;
}

body{ 
   background-color: white;
}

.instructions { 
    color: black;
    font-size: x-large;  
    font-weight: 600;
    font-style: italic;
    text-decoration: underline;
    display: block;
}

.container {
    position: relative; /* Set container to relative position */
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center; /* Align items to the center from left to right */
    justify-content: flex-start; /* Align items to the top */
    padding: 20px; /* Add padding for spacing */
    box-sizing: border-box; /* Include padding in width calculations */
    flex-direction: column;
}

#myTable {
    
    display: flex;
    flex-direction: row;
    
    
}

.words {
    position: absolute; /* Position words container absolutely */
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    
}
.vowel{
    color: red;
    font-size: 30px;
    font-weight: 700;
}
.word {
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25m;
    margin: 0.5rem;
    cursor: move;
    transition: opacity 0.2s;
    font-weight: 700;
    font-size: 22px;
    color: rgb(52, 52, 216);
}
#left, #right {
    position: relative; /* Set left and right containers to relative position */
    width: 300px;
    min-height: 200px;
    margin: 20px;
    border: 3px solid #111111;
}

.dropareatitle { 
    border-bottom: 3px solid #111111;
    font-size: 25px;
font-weight: 500;}

.draggable-elements {
    display: flex;
    align-items: center; /* Align items vertically */
    margin: 5px;
    background-color: peachpuff;
}

#timer {
    color: #00ff40;
    font-size: 30px;
    font-weight: 500;
    font-style: oblique;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;}
  
  #countdown{
    color: red;
    font-size: 30px;
    font-weight: 500;
    font-style: oblique;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  animation: shake 0.5s ease ;
  
  }
  .refresh{
    background-color: rgb(93, 173, 248);
    height: 60px;
    width: 140px;
    color: blue;
    margin-top: 5px auto;
  }
 