body {
background-image: url('../../../backgrounds/pinkmusic.gif');
background-attachment: fixed;
background-repeat: repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 20px;
    text-align: center;
    color: black;
}

.container {
    display: grid;
    border: 2px solid;
    grid-template-rows: 220px 550px 50px 60px;
    grid-template-columns: 1100px 200px;
    margin: auto;
    font-family: Tahoma, sans-serif;
}

header {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    border-radius: 9px;
    border: 2px solid;
    background-color: aliceblue;
}

main {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    border-radius: 9px;
    border: 2px solid;
    background-color: aliceblue;
}

aside {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    border-radius: 9px;
    border: 2px solid;
    background-color: aliceblue;
}

section {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
    border-radius: 9px;
    border: 2px solid;
    background-color: aliceblue;
}

footer {
    grid-row: 4 / 5;
    grid-column: 1 / 3;
    background-image: linear-gradient(#e0afc0, #cd5f80);
    text-align: center;
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
}

#footerimg {
    height: 18px;
    width: auto;
    padding-left: 4px;
}

footer p{
    color: #062403;
}

footer a:link {
    text-decoration: none;
    color: #062403;
}

footer a:visited {
    color: #062403;
}

footer a:hover {
    color:#32752b;
    text-decoration: underline;
}

footer a:active {
    color:#1aff00;
    text-decoration: underline;
}