@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oxanium&display=swap');

html {
  background-color: #bfefff;
  min-height: 100vh;
}

body {
  font-family: 'Oxanium', sans-serif;
  font-size: 12pt;
  background-color: rgba(255, 255, 255, 0.75);
  color: #0099ff;
  margin: 30px auto;
  padding: 0 0 40px 0;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #0099ff;
  box-shadow: 0 0 30px rgba(0, 153, 255, 0.5);
}

h1 {
  color: #0099ff;
  text-shadow: 3px 3px 0px #66ccff;
  font-size: 4rem;
  text-align: center;
  text-transform: uppercase;
  margin: 30px 0;
  font-family: 'Anton', sans-serif;
}

.squares-container {
    display: flex;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
    width: 100%;
    background-color: #dff7ff;
    border-top: 2px solid #0099ff;
    border-bottom: 2px solid #0099ff;
    margin-bottom: 40px;
}

.red-square {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-width: 130px;
    height: 50px;
    background-color: transparent;
    color: #0099ff;
    text-decoration: none;
    font-family: 'Oxanium', sans-serif;
    font-size: 0.85rem;
    text-align: center;
    padding: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-right: 1px solid rgba(0, 153, 255, 0.3);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.red-square:last-child {
    border-right: none;
}

.red-square:hover {
    background-color: #0099ff;
    color: white;
}

.window {
  background-color: white;
  border: 2px solid #0099ff;
  margin-bottom: 40px;
  width: 90%;
  max-width: 800px;
}

.window-header {
  background: #66ccff;
  color: #003355;
  padding: 8px;
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
  font-family: 'Oxanium', sans-serif;
}

.music-btn {
  background: white;
  color: #0099ff;
  border: 2px solid #0099ff;
  font-family: 'Oxanium', sans-serif;
  font-weight: bold;
  padding: 12px 24px;
  margin: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.music-btn:hover {
  background: #0099ff;
  color: white;
}