html, body {
    font-family: "Fjalla One", sans-serif;
    text-align: center;
    background-color: black;
}

* {
    margin: 0;
}

.logo {
    float: left;
    font-size:40px;
    font-family: "Genos", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: italic;
}

header {
    padding-left: 10px;
    padding-right: 10px;
    align-items: center;
    background-color: black;
    color:#FFBF00;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
}

header a{
    padding-top: 15px;
    padding-left: 10px;
    float: right;
    color:#FFBF00;
    font-style: normal;
    text-decoration: none;
}

#display {
    margin-top: 50px;
    padding: 25px;
    background-color: black;
}

.shirts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 10px;
}

#display p {
    color: white;
    font-size: 25px;    
}

#display h1 {
    color: white;
    font-size: 50px;
}

#display * {
    margin: 10px;
}

.shirt {
    display: grid;
}

.shirt img {
    transition: ease-out 0.2s;
    border-radius: 50px;
}

.shirt img:hover {
    scale: calc(100% + 2%);
}