* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

a {
    text-decoration: none;
    color: #000;
}

body,
html {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.app {
  width: 100%;
  height: 100%;
  padding: 0 5% 10% 5%;
  overflow-x: hidden;
  overflow-y: auto;
}

.title {
    text-align: center;
    position: sticky;
    top: 0;
    font-size: 26px;
    padding: 10px;
    background-color: #FFF;
}

.container {
    width: 100%;
    margin: 0 auto;
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 20px;
}

.container .item {
    width: 100%;
    max-width: 360px;
    padding: 3px;
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: 3px 3px 5px 1px rgba(0,0,0,0.3);
}

.container .item .img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.container .item .test {
    text-align: center;
}

.fps-counter {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.3);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-family: monospace;
}