/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
img{
    width: 100px;
    height: 100px;
    border: 10px;
    border-radius: 5px;
}

.musicAlignment{
    display: grid;
  grid-template-columns: 110px 15px 200px 110px 15px 200px;
  grid-template-rows: 100px 100px;
  gap:10px;
  padding: 10px;
}

.musicBox{
    padding: 10px;
    border: 10px;
    border-radius:25px;
    width:750px;
    height: 300px;
    background-color: rgb(187, 113, 255);
    grid-area:music;

}

a{
    text-decoration:none;
}

.button{
    color: rgb(216, 255, 242);
    border-radius: 10px;
    background-color: black;
    padding:20px;
    margin-left: 20px;
}

#header{
    display: grid;
    padding: 10px;
    margin-left: 270px;
    grid-area:header;
}
.hr{
    height: 10px;
    border-radius: 2px;
    background-color: rgb(224, 252, 252);
}

.blockLeft{
    display: grid;
    grid-template-rows: 100px 100px;
    grid-area:sideLeftBar;
}
.blockMiddle{
    display: grid;
    grid-template-rows: 100px 35px 20px;
    width: 500px;
    padding:50px;
    border-radius: 25px;
    background-color: chartreuse;
    grid-area: main;
}

#body{
    margin: 50px;
    display: grid;
	grid-template-columns: 200px 600px 200px;
	grid-template-rows: 100px 500px; 
    gap:10px;
    grid-template-areas:
        "header header header header header"
        "sideLeftBar main main main sideRightbar"
        "update main main main sideRightbar"
        "music music music social social";
}
