Maximus Powers
final
3568151
.app-container {
width: 100vw;
height: 100vh;
background-color: #323232;
color: white;
display: flex;
justify-content: center;
align-items: flex-start;
overflow: auto;
padding-top: 5vh;
}
.main-content {
display: flex;
flex-direction: column;
padding: 20px;
gap: 20px;
max-width: 100%;
max-height: 100%;
}
.header {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
position: relative;
}
.title {
font-size: 48px;
font-weight: bold;
margin: 0;
text-align: center;
color: #ffffff;
}
.audio-info-button {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
font-size: 24px;
cursor: pointer;
color: white;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.audio-info-button:hover {
transform: scale(1.1);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.game-area {
display: flex;
gap: 50px;
align-items: flex-start;
justify-content: center;
}
.board-container {
position: relative;
flex-shrink: 0;
}
.sidebar {
width: 400px;
display: flex;
flex-direction: column;
gap: 20px;
padding: 20px;
background-color: #464646;
border-radius: 10px;
height: fit-content;
}
@media (max-width: 1200px) {
.game-area {
flex-direction: column;
align-items: center;
gap: 30px;
}
.sidebar {
width: 100%;
max-width: 600px;
}
.title {
font-size: 36px;
text-align: center;
}
}
@media (max-width: 768px) {
.main-content {
padding: 10px;
}
.title {
font-size: 28px;
}
.board-container {
transform: scale(0.8);
transform-origin: top center;
}
.sidebar {
padding: 15px;
}
}