@import url('https://fonts.googleapis.com/css2?family=Ranchers&display=swap');

.ranchers-regular {
    font-family: "Ranchers", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v110/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1n-q_4MrImHCIJIZrDCvHOej.woff2) format('woff2');
  }
  
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
  }


body {
    margin: 0;
    padding: 0;
    background-color: rgb(68, 18, 25);
    background-image: URL("../Background.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    font-size: small;
}

h1 {
    font-family: "Ranchers", 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    text-shadow: 3px 3px 5px black;
    text-align: center;
    letter-spacing: 3px;
}

header {
    font-family: "Ranchers", 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    text-shadow: 3px 3px 5px black;
    display: flex;
    flex-direction: column;
}

#headerText, h1 {
    background-color: rgba(255, 255, 255, .3);
    max-width: 80%;
    margin: 20px auto;
    padding: 10px;
}

#headerText > div {
    text-align: center;
}

#headerTitle {
    font-size: 3.5em;
}

#headerSubtitle {
    font-size: 2em;
    padding-left: 10px;
}

#playlist {
    padding: 1em 0;
    width: 90%;
    margin: auto;
    aspect-ratio: 16 / 9;
}

#socalLinks {
    display: flex;
    flex-flow: row;
    max-width: 80%;
    gap: 2em;
    margin: auto;
    justify-content: center;
}

.socialIcon {
    flex: auto;
    margin: auto;
}

.socialIcon > a > img {
    height: 3em;
}

@media (min-width: 700px) {

    body {
        font-size: larger;
    }

    header {
        height: 20%;
    }
    
}