/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* FUNDO */
body {
  font-family: "Brush Script MT", cursive;
  padding: 20px;
  background: rgba(80, 216, 240, 0.767);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #222;
}

/* HEADER */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: rgba(181, 245, 245, 0.85);
  border-radius: 20px;
  margin-bottom: 20px;
}

/* MENU */
.menu {
  background: rgba(125, 203, 226, 0.85);
  padding: 10px;
  border-radius: 15px;
  text-align: center;
}

.menu a {
  margin: 0 15px;
  text-decoration: none;
  color: black;
  font-size: 20px;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #ff69b4;
}

/* LAYOUT */
.leftcolumn {
  float: left;
  width: 75%;
}

.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* CARDS */
.card {
  background-color: rgba(184, 240, 241, 0.9);
  padding: 20px;
  margin-top: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* IMAGENS / GIFS */
.post-image {
  height: 200px;
  width: 100%;
  border-radius: 15px;
  margin: 15px 0;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.post-image.small {
  height: 120px;
}

/* CLEAR FIX */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* MUSIC PLAYER */
#music-player {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 2.5em;
  cursor: pointer;
  z-index: 9999;
  animation: spin 4s linear infinite;
  transition: transform 0.3s ease;
}

#music-player:hover {
  transform: scale(1.2);
}

/* ANIMAÇÃO */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* RESPONSIVO */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {
    width: 100%;
    padding: 0;
  }
}




