

body {
    background: #242F40;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Work Sans', sans-serif;
}

.main-container {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    margin-top: 50px;
    margin-bottom: 100px;
}

.main-container-background {
    background-color: #E5E5E5;
    border-radius: 40px;
    position: absolute;
    margin-top: 80px;
    width: 80%;
    height: 692px;
    z-index: -100;

    box-shadow: 0 4px 8px 0 black, 0 6px 20px 0 black;
}

.main-container-background-short {
    height: 620px;
}

.title {
    text-align: center;
    font-size: 40px;
    width: 100%;
    margin-top: 30px;
    font-weight: 400;
}

.artist {
    text-align: center;
    font-size: 20px;
    width: 100%;
    margin-top: 10px;
    font-weight: 200;
    margin-bottom: 20px;
}

.cover-img {
    width: 200px;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* https://www.w3schools.com/css/css3_shadows_box.asp */
}

.spotify-container {
    margin-top: 20px;
    width: 600px;
}

.other-link {
    display: flex;
    margin-top: 20px;
    width: 600px;
    background-color: rgb(234, 7, 6);
    border-radius: 15px;
    align-items: center;
    text-decoration: none;

    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: box-shadow 0.5s, transform 0.5s;
}

.other-link:hover {
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transform: translateY(-5px);
}

.other-link > img {
    width: 80px;
    height: 80px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: white;
}

.link-title {
    margin-left: 20px;
    font-size: 20px;
    color: white;
    text-shadow: 0px 0px 5px grey;
    flex-grow: 1;
}

.link-rightarrow {
    color: white;
    margin-right: 25px;
}

.copyright-container {
    margin-top: 20px;
}

#spotify-link {
    display: none;
}

@media only screen and (max-width: 800px) {
    .main-container-background {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }

    .main-container {
        width: calc(100% - 30px);
    }

    .spotify-container {
        width: 100%;
    }

    .other-link {
        width: 100%;
    }
}

@media only screen and (min-width: 1200px) {
    .main-container {
        width: 600px;
    }

    .main-container-background {
        width: 1000px;
    }

    .spotify-container {
        width: 100%;
    }

    .other-link {
        width: 100%;
    }
}