@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Tomorrow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tomorrow', sans-serif;
    display: flex;
    flex-direction: column;
}

head{
    display: none;
}

section{
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    display: flex;
}

script{
    display: none;
}

footer{
    position: relative;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: #252525;
    color: #fafafa;
    height: 10vh;
    flex-wrap: wrap;
    text-align: center;
}

.landing{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #252525;
    z-index: 0;
}

.albums{
    display: flex;
    height: auto;
    width: 100%;
    justify-content: center;
    align-content: top;
    align-items: center;
    background-color: #fafafa;
    border-radius: 90%;
    z-index: 1;
    margin-top: 3%;
    margin-bottom: 3%;
}

.alert{
    color: #ffffff;
    margin-top: 40%;
}

.h2{
    color: #252525;
}

.spotify{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #252525;
    height: auto;
    z-index: 1;
}

.parallaximg{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    width: 50%;
    margin: 0;
}

.top{
    margin-top: 0;
}

.albumholder{
    margin: 20px 20px 20px 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    width: 80%;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 16px;
}

.album{
    width: 30vh;
    height: 30vh;
    background-color: #252525;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    margin: 5px;
    color: #fafafa;
    border: 1px solid #171717;
    box-shadow: 5 5px 5px rgba(255, 255, 255, 0.5);
}

.album:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(200, 225, 255, 0.2);
  }

.album img{
    width: 60%;
    margin: 20px;
}

.album h2{
    font-size: 1.5em;
    margin: 20px;
}

#embed-iframe{
    margin: 20px;
    width: 80%;
    border: none;
}
