@font-face {
    font-family: 'Cera Pro';
    src: url('fonts/CeraPro-Light.eot');
    src: local('Cera Pro Light'), local('CeraPro-Light'),
    url('fonts/CeraPro-Light.eot?#iefix') format('embedded-opentype'),
    url('fonts/CeraPro-Light.woff2') format('woff2'),
    url('fonts/CeraPro-Light.woff') format('woff'),
    url('fonts/CeraPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 800px;
    margin: 0 auto;
    background-image: url('images/bg_desktop.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-color: #2F1634;
    font-family: 'Cera Pro', sans-serif;
    color: white;

}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main > section,
nav,
footer {
    margin: 5px;
    padding: 5px;
}

.section_navigation,
.section_footer {
    height: 50px;
}

.section_music,
.section_video {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    border: 1px dashed white;
    border-radius: 20px;
}
.section_music {
    width: 40%;
}

h3 {
    margin: 0;
}

.albom_pic,
iframe {
    border-radius: 20px;
}

.section_navigation {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-transform: uppercase;
}

.section_navigation_links {
    display: flex;
    gap: 10px;
}

.section_music_link {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.section_music_link:hover {
    color: #927398;
}

.section_navigation_link {
    text-decoration: none;
    color: #927398;
    transition: color 0.3s;
}

.section_navigation_link:hover {
    color: white;
}

.section_navigation_write_us_button {
    text-decoration: none;
    color: white;
    padding: 6px 10px;
    border: 2px solid white;
    transition: color 0.3s, background-color 0.3s, border 0.3s;
}

.section_navigation_write_us_button:hover {
    color: #2F1634;
    background-color: white;
    border: 2px solid white;
    box-shadow: 0 0 10px white;
}

.section_navigation_write_us_button:active {
    color: white;
    background-color: #503655;
    border: 2px solid #503655;
}

.fixed_line {
    margin: 10px;
    border: 1px inset #927398;
}
