* {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

*::selection {
    background-color: #4e3acf81;
    /* background-color: #8777ec; */
}
a {
    transition: all 0.2s ease-in-out;
}

body {
    background: linear-gradient(120.79deg, rgba(195, 215, 230, 0) 0.58%, #cdc7f6 85.09%);;
    height: 100vh;
}

/* header */
.header {
    display: flex;
    width: 100vw;
    height: 18vh;
    padding: 3vh 0;
    justify-content: center;
    align-items: center;
}
.header img {
    height: 100%;
}

.main {
    display: flex;
    width: 100vw;
    flex-direction: row;
    /* background-color: aqua; */
    /* height: calc(100vh - 24vh); */
}
/* left hand side (cover art) */
.cover {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
}
.cover .art{
    width: 70%;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
}

.cover .back {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc();
}

.desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.desc p {
    padding-left: 30px;
    font-size: 15px;
    width: 70%;
}
.desc h1 {
    /* padding-top: 20%; */
    padding-left: 30px;
    padding-bottom: 30px;
}
.desc iframe {
    margin-top: 25px;
    margin-left: 30px;
}
.desc a {
    color: #272727;
}
.desc a:hover {
    color: #838383;
}

.links {
    width: 50vw;
    text-align: right;
    /* display: flex; */
    /* justify-content: center; */
    /* flex-direction: column; */
    padding-right: 3vw;
    text-transform: uppercase;
}
.links h2 {
    letter-spacing: 3px;
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 20px;
    /* background-color: #4e3acf81; */
}
.links a {
    letter-spacing: 1px;
    font-size: 14px;
    text-decoration: none;
    color: #272727;
    padding: 4px 0;
    transition: all 0.2s ease-in-out;
    position: relative;
    display: inline-block;
}
.links a:hover {
    color: #838383;
}
.links a:hover::after {
    width: 100%;
}
.links a:after {
    transition: all 0.3s ease-in-out;
    width: 0%;
    content: '';
    position: absolute;
    /* width: 100%; */
    height: 1px;
    background-color: black;
    right: 0;
    bottom: 2px;
}
.links div {
    display: flex;
    flex-direction: column;
}

.footer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    font-size: 12px;
}
.footer a {
    color: #272727;
}
.footer a:hover {
    color: #838383;
}

@media only screen and (max-width: 1000px) {
    .main {
        flex-direction: column;
    }
    .cover .art {
        width: 40vw;
        margin-top: 5vh;
    }
    .desc {
        margin-top: 7vh;
        text-align: center;
    }
    .desc p {
        display: inline;
        padding-left: 0px;
        padding: 0 20vw;
        width: 60vw;
    }
    .desc iframe {
        margin: 20px 15% 10px;
    }
    .links {
        text-align: center;
        width: 100vw;
        margin-top: 30px;
    }
    .footer {
        position: static;
        text-align: center;
        margin: 30px 0 20px;
        right: 0;
        transform: translateX(0%);
    }
}
