@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

body {
    font-family: 'SF Pro Display', sans-serif;
    background-color: #2488e6;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    padding: 20px;
    background-color: #000000;
}

header h1 {
    margin: 0;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #000000;
}

.spotify-embed {
    margin: 40px 0;
}

footer {
    margin-top: 50px;
    padding: 20px;
    background-color: #240046;
}

.big-button,
.small-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-family: inherit;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    color: #ffffff;
}

.big-button {
    background-color: #032841;
}

.small-button {
    background-color: #2522b1;
    margin: 10px;
}

.big-button:hover,
.small-button:hover {
    background-color: #ddcf04;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}