body {
  background-image: url(images/backgrounds/pink100.jpg);
  cursor: url(images/others/nat983.cur), auto;
}

.header-image {
  display: flex;
  justify-content: center;
}

.container {
  justify-content: center;
  min-height: 200px;
  max-width: 100%;

  padding-left: 400px;
  padding-right: 400px;

  display: grid;
  grid-template-columns:
    1fr 2fr 1fr;
  grid-auto-rows:
    minmax(200px, auto);
  row-gap: 1em;
  column-gap: 2em;
}

.sidebar-left {
  display: grid;
  row-gap: 1em;
}

.side-bar-left {
  text-align: left;
  padding: 10px;
  width: 150px;
  height: 250px;px;
  background-color: rgb(255, 209, 179);
  border-radius: 20px;
}

.main-content {
  display: grid;
  grid-template-columns: 5fr 6fr;
  height: fit-content;

  text-align: center;

  gap: 1em;

  padding: 20px;
  width: 500px;

  background-color: rgb(255, 209, 179);
  border-radius: 20px;
}

.welcome-page:first-child{
  grid-column: 1 / 3;
  grid-row: 1 / 20;
  background-color: white;
}
.blinkies:nth-child(2){
  grid-column: 1 / 3;
  grid-row: 20 / 22;
  background-color: white;
}
.weekly-song:nth-child(3){
  grid-column: 1 / 1;
  grid-row: 22 / 35;
  background-color: white;
}
.updates:nth-child(4){
  grid-column: 2 / 3;
  grid-row: 22 / 35;
  background-color: white;
}

.blinkies{
  height: 20px;
}

.side-bar-right {
  text-align: center;
  padding: 10px;
  width: 150px;
  height: 600px;
  background-color: rgb(255, 209, 179);
  border-radius: 20px;
}

.my-link {
  text-align: center;
  padding: 10px;
  width: 150px;
  height: 200px;
  background-color: rgb(255, 209, 179);
  border-radius: 20px;
}

.cute-image{
  text-align: center;
  padding: 10px;
  width: 150px;
  height: 75px;
  background-color: rgb(255, 209, 179);
  border-radius: 20px;
}

ul {
  list-style-type: none;
}


.custom-button {
  display: inline-block;     
  color: black;                   
  text-decoration: none;          
  font-size: 16px;
  transition: background-color 0.3s, transform 0.2s;
}

.custom-button:hover {
  background-color: grey;      
  transform: scale(1.05); 
}