* {
    --main-section-color: rgba(150, 20, 150, 0.3)
}

body {
    background-color: #aa99ff;
    color: white;
    font-family: Calibri;
    display: flex;
    justify-content: center;

}

p {
    margin: 10px;
    font-size: 18px;
}

h2 {
    margin: 10px;
}

.main-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 75%;
}

.links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.main-page a {
    display: inline-block;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    padding: 5px;
    color: rgba(90, 20, 70, 0.7);
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.main-page a:hover {
    color: rgba(70, 0, 50, 0.8);
    transform: translateY(-5px);
}

.introduction p:nth-child(3) {
    font-size: 14px;
}

.first-section,
.second-section,
.third-section {
    border-width: 3px;
    border-style: solid;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    background-color: var(--main-section-color);
    margin-bottom: 20px;
    box-shadow: 3px 3px 0px #909090;
}

.updates {
    overflow-y: scroll;
}

.update-date {
    font-weight: 900;
    margin-block: 0px;
    padding: 0px;
}

.update-text {
    margin-top: 0px;
}

.album-recommendation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.album-recommendation-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75%;
    margin-bottom: 14px;
}

.spotify-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.window {
    position: absolute;
    width: 600px;
    height: 750px;

    border: 2px outset #fff;

    box-shadow: 3px 3px 0 #000;

    display: flex;
    flex-direction: column;
}

.title-bar {
    height: 26px;
    padding: 0 4px;
    background-color: var(--main-section-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    cursor: grab;
    user-select: none;
}

.title-bar:active {
    cursor: grabbing;
}

.close-button {
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 0px;
    font-weight: bold;
    line-height: 14px;
    cursor: pointer;
}

.close-button:active {
    border-style: inset;
}

.window-content {
    flex: 1;
    border: none;
    background: white;
}
