* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    margin-top: -1px;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Sorts Mill Goudy", serif;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 150px;
    background-image: url(./images/New_banner_mar.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.hero img {
    width: 100%;
    height: 100%;
}

.hero p {
    padding-top: 20px;
    margin: 0px;
    color: #e6e6e6;
    font-size: 6.5rem;
}

.content {
    display: flex;
    background-image: url(./images/pedra.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.links {
    width: 200px;
    margin-top: 50px;
    margin-left: 30px;
}

.links img {
    width: 50px;
    height: 50px;
}

.links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    user-select: none;
    width: 150px;
}

.links li {
    display: flex;
    align-items: center;
}

.links li img:hover {
    filter: drop-shadow(0 0 0.50rem #a8a8a8);
    border-radius: 180;
}

.menu-div {
    display: flex;
    align-items: center; 
}

#discography:hover::after {
    content: " Discography";
    margin-left: 5px;
}

#about:hover::after {
    content: " About";
    margin-left: 5px;
}

#bandcamp:hover::after {
    content: " Bandcamp";
    margin-left: 5px;
}

.discography {
    width: 950px;
    height: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
    scrollbar-width: none;
    background-color: rgba(230, 230, 230, 0.650);
}

.discography h3 {
    margin-top: 0;
}

.discography ul {
    width: 100%;
    list-style: none;
}

.discography a {
    color: #E43636;
    text-decoration: none;
}

.main-content {
    width: 100%;
    padding-left: 5px;
}

.about {
    width: 950px;
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 50px;
    margin-bottom: 50px;
    scrollbar-width: none;
    background-color: rgba(230, 230, 230, 0.650);
}

.about a {
    color: #E43636;
    text-decoration: none;
}

.about-text h3 {
    margin-top: 0;
}

.about-intro-section {
    display: flex;
    margin-top: 5px;
    margin-bottom: 20px;
    height: auto;
}

.about ul {
    list-style: none;
}

.about-intro-section p {
    margin-left: 10px;
}

#profile-pic {
    height: 200px;
}

hr {
    width: 100%;
    border: none; 
    height: 1px; 
    background-color: #a8a8a8;
}

footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 25px;
    font-size: 0.8rem;
    padding: 10px;
    background-color: #101010;
    color: #e6e6e6;
}

footer a {
    color: #e6e6e6;
    text-decoration: none;
}

footer a:hover {
    color: #a8a8a8;
}

@media (max-width: 1000px) {
    .hero p{
        font-size: 6rem;
    }

    .links a {
        padding: 5px;
    }

    .menu-div::after {
        display: none;
    }

  #discography:hover::after {
    content: " Discography";
    margin-left: 5px;
  }

  #about:hover::after {
    content: " About";
    margin-left: 5px;
  }

  #bandcamp:hover::after {
    content: " Bandcamp";
    margin-left: 5px;
  }
}

@media (max-width: 940px) {
    .hero p {
        font-size: 5.5rem;
    }
}

@media (max-width: 840px) {
    .hero p {
        font-size: 5rem;
    }
}

@media (max-width: 770px) {
    .hero p {
        font-size: 4rem;   
    }

    .content {
        flex-direction: column;
    }

    .links ul {
        display: flex;
    }

    .discography {
        width: 100%;
        height: 100%;
        display: inline;
    }

    .about {
        text-wrap: wrap;
    }

    .last-discography-entry li {
        display: inline-block;
    }

    .about-intro-section {
        flex-direction: column;
    }

    #profile-pic {
        flex: 0;
        width: 200px;
    }
}

@media (max-width: 615px) {
    .hero p {
        font-size: 3rem;
    }
}

@media (max-width: 460px) {
    .hero p {
        font-size: 2rem;
    }
}

@media (max-width: 1350px) {
    .about {
        width: auto;
    }
}