* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    background-color: #121212;
    overflow: auto; /* Allow scrolling */
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

main {
    padding-top: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
}

p {
    font-size: 1.5em;
    margin-bottom: 1em;
    text-align: center;
}

.welcome {}

.btn {
    display: block;
    margin: 0 auto;
    padding: 0.5em 2em;
    font-size: 1.2em;
    color: #121212;
    background: linear-gradient(135deg, #ff7f50, #ff6347);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: linear-gradient(135deg, #ff6347, #ff4500);
}

.audio-controls {
    display: flex;
    align-items: center;

    position: fixed;
    bottom: 0;
    right: 0;
}

.play-pause {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 10px;
}

.play-pause svg {
    width: 24px;
    height: 24px;
}

#volumeSlider {
    width: 100px;
}

.sameline {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gapy {
    margin-top: 5em;
}

.gapx {
    margin-left: 5em;
}

.arrow-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    transition: transform 0.3s ease-in-out; /* Add transition for smooth scaling */
    transform-origin: top; /* Set transform origin to center */
}

.arrow-container:hover {
    transform: scale(2);
}