@font-face {
    font-family: 'Futura';
    src: url('fonts/Futura-Medium.ttf')  format('truetype');
  }

  @font-face {
    font-family: 'FuturaItalic';
    src: url('fonts/Futura-MediumItalic.ttf')  format('truetype');
  }

* {
    font-family: 'Futura';
}

body {
    color: #EA5B56;
}

h2 {
    font-weight: 500;
}

.split {
    display: flex;
    flex-direction: row;
}

.button {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
    color: #FFFFA7;
    background-color: #EA5B56;
    text-decoration: none;
    text-transform: uppercase;
    cursor:crosshair;
    width: fit-content;
}

#content {
    width: 100vw;
    display: flex;
    flex-direction: column;
}

#mainsection {
    background-color: #FEFF6E;
    height: 100vh;
    display: flex;
    justify-content: center;
  align-items: center;
}

#mainsection img {
    max-width: 100vw;
}

#infosection {
    padding: 15%;
    padding-top: 50px;
    padding-bottom: 50px;
    
    background-color: #FFFFA7;
}

#infosection * {
    width: 100%;
}

#shopsection {
    padding: 15%;
    padding-top: 50px;
    padding-bottom: 50px;
    color: #FFFFA7;
    background-color: #EA5B56;
}
#instasection {
    padding: 15%;
    padding-top: 50px;
    padding-bottom: 50px;
    
    background-color: #FFFFA7;
}

.shopitem {
    padding: 10px;
}
.shopitem img {
    width: 100%
}

.shopitem .button {
    background-color: #FFFFA7;
    color: #EA5B56;
}



#spotify {
    padding-top: 50px;
    padding-bottom: 50px;
}

#spotify * {
    color: #EA5B56 !important;
}

#socials li {
    margin-bottom: 10px;
}

#platforms li {
    margin-bottom: 10px;
}



ul {
    list-style: none;
    padding: 0;
}

footer {
    background-color: #FEFF6E;
    padding: 50px;
}

footer * {
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 840px) {
    .split {
        flex-direction: column;
    }

    #infosection {
        padding: 8%;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #instasection {
        padding: 8%;
        padding-top: 30px;
        padding-bottom: 30px;
    }
  }