﻿body {
    font-family: 'Segoe UI', sans-serif;
}

span {
    font-style: italic;
}

body {
    background: #313576;
    margin: 0px;

}

.game-container{
    display: flex;
    flex-direction: column;
}

.main-box{
    overflow: hidden;
    margin: 10px 5%;
    height: inherit;
}

.game-box{
    height: 70vh;
    width: 100%;
    display: flex;
    justify-content: space-around;
}


.back-button-container{
    padding-bottom: 30px;    
    margin: auto;    
}

.back-button {
    display: flex;    
    align-items: center;
    padding: 10px 16px;        
    min-width: 102px;
    height: 48px;    
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #99DDF6;
    border-radius: 40px;        
    font-family: 'Sofia Pro', sans-serif;     
    font-weight: 500;  
    font-size: 16px;     
    color: #007ACC;
    cursor: pointer;
}

.back-button:hover {
    background: rgba(255, 255, 255, 1);
}

.arrow-left {  
    margin-right: 6px;  
} 
  