@font-face {
  font-family: 'CustomFont'; /* Name your font family */
  src: url('font/SueEllenFrancisco-Regular.ttf'); /* Locate the .ttf file within your directory*/
}
* {
    color: rgb(5, 18, 25);
    text-decoration: none;
}

body{
    background-color: antiquewhite; 
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 11;
    position: fixed;
    inset: 0 auto auto 0;
    background-color: antiquewhite;
    width: 100vw;
}

.header-left{
    display: flex;
    width: 100%;
}

.header-right{
    display: flex;
    width: 100%;
}

.header-right a{
    display: block;
    margin: auto 10px;
    font-size: 27px;
    text-decoration: none;
    align-self: flex-start;
    font-family: monospace;
    text-transform: uppercase;
}
.header-right a:hover{
    color: rgb(170, 89, 89);
}
h1{
    font-family: 'CustomFont', Times, serif;
    font-weight: 400;
    text-align: left;
    margin: 5px 5px 0 0;
    font-size: 40px;
}
h2{
    margin: 0;
    padding: 0;
}
h3{
    text-align: center;
}
.sub-heading{
    text-align: center;
    width: 100%;
}
pre{
    font-family: monospace;
    text-align: center;
    font-size: 13px;
}
.aside{
    max-width: 30%;
    width: 30%;
    height: 100vh;
    position: fixed;
    bottom: 0;
    top: 0;
    display: none;
    z-index: 10;
}
.left{
    left: 0;
}
.right{
    right: 0;
}
.aside img{
    margin: auto;
}
.jura{
    transition: 0.5s ease-in-out all;
}
.jura:hover {
    width: 315px;
}
.container{
    display: flex;
    flex-direction: column;
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
    padding-top: 160px;
    min-height: 90vh;
    overflow: hidden;
}

.main-body{
    width: 100%;
    margin: auto;
    font-family: monospace;
    font-size: 17px;
}

.text-center {
    text-align: center;
}

.center {
    display: block;
}
.downolad-text {
    text-align: center;
}

.song-hiperlink {
    font-size: 20px;
    
    text-decoration: none;
}
.song-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
}
.team-links a{
    text-decoration: underline;
    margin: 0 20px 0 0;
}
.team-links a:hover{
    color:rgb(170, 89, 89);
}
footer{
    width: 100%;
    display: flex;
    padding: 50px 0;
}
.footer-content{
    margin: auto;
    display: flex;
}
.footer-link{
    margin-right: 15px;
    display: flex;
}

.addres{
    overflow-wrap: break-word;
    text-wrap: wrap;
    padding-right: 2px;
}

@media screen and (min-width: 1024px) {
    
    .aside{
        display: flex;
    }
    header {
        flex-direction: row;
        width: 99%;
        padding: 0 20px 0 20px;
    }

    .header-left{
        width: unset;
    }

    .header-right{
        width: unset;
        padding-right: 20px;
    }

    .container{
        max-width: 40%;
        width: 40%;
        padding-top: 100px;
    }
    pre {
        font-size: 16px;
    }
}