/* latin */
@font-face {
    font-family: 'Barlow500';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gs51os.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@keyframes testAnimation {
    from {background-color: #450342;}
    to {background-color: #97058d;}
}


* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;

    font-family: 'Barlow500', /* Fallback fonts -> */ sans-serif; 
}

body {
    background-color: #1d1a1d;
}

header {
    background-color: #97058d;
    padding: 20px;
    display: flex;
    align-items: center;
}

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

ul li {
    float: left;

}

ul li a {
    display: block;
    color: white;

    background-color: #97058d;
    transition: background-color 0.3s;

    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

ul li a:hover {
    background-color: #450342;
}

body, html {
    height: 100%;
}

main {
    height: 100%;
}

.hero-image {
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/hero-image.jpg"); */
  background-color: rgb(68, 17, 68);

  height: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  text-align: center;
  color: white;
}

.hero-text h1 {
    font-size: 3em;
}
.hero-text p {
    font-size: 1.7em;
}

.text-column-holder {
    display: flex;
    justify-content: center;
    gap: 10rem;
}

.center {
    text-align: center;
    margin: 1rem;
}

.text-column {
    border: 1px solid white;
    border-radius: 2rem;

    text-align: left;
    display: flex;
    flex-direction: column;
    
    
    padding: 10px;
    
    width: 30vw;
    height: 100%;
    min-height: 20rem;
}

.text-column-holder p, .text-column-holder h1, .text-column-holder span {
    color: white;
}

.text-column span {
    font-size: 0.4em;
    text-align: left;
    margin-top: auto;
    margin-left: 7px;
}

.text-column-holder h1 {
    margin-bottom: 1rem;
}

.text-column p {
    font-size: 1.5em;
    padding: 1rem;
    margin: auto 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    background-color: dodgerblue;
    padding: 10px;
    gap: 2rem;
}

.container div {
    background-color: #f1f1f1;
    border: 1px solid black;
    width: 20rem;
    height: 30rem;

    margin: 1rem auto;
    padding: 10px;
    font-size: 3em;
    text-align: center;
    align-content: center;

    transition: 0.5s transform ease;
}

#albums-html{
    background-color: #450342;
    animation-name: testAnimation;
    animation-duration: 4s;
}

.container div:hover {
    transform: scale(1.05);
}