@font-face {
  font-family: "Normal";
  src: url("Alegreya.ttf");
}

body {
    font-family: Normal;
    background: url("images/bg.png");
    padding: 10px;
}

a {
    text-decoration: none;
    color: inherit;
}
a:visited {
    color: rgb(110, 50, 110);
}

.page-title {
    font-size: 300%;
    text-align: center;
    font-weight: bold;
}

.page-author {
    text-align: center;
}
.page-author a {
    color: #5593ba;
}

.timestamp {
    text-align: right;
}

.explanation {
    margin-bottom: 30px;
}

.product-group {
    margin: 30px 0;
}
.rank {
    font-weight: bold;
    font-size: 24pt;
    margin-bottom: 10px;
}
.products {
    display: flex;
    flex-wrap: wrap;
}
.products .product {
    width: 200px;
    height: 315px;
    margin: 20px 10px;
    text-align: center;
}

.products .product .thumbnail {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: black;
    box-shadow: 5px 5px 3px rgb(127,127,127);
}

.products .product .thumbnail img {
    width: 100%;
}

.products .product .title {
    padding: 10px 5px;
}

@media (width <= 500px) {
    body {
        margin: 0;
    }
    .product-group {
        margin: 30px 10px;
    }
    .products .product {
        width: 150px;
        height: 230px;
    }
    .products .product .thumbnail {
        height: 180px;
    }
}

fieldset {
    margin: 20px 0;
    padding: 5px;
    background: #5593ba;
    color: white;
    border: 2px solid white;
}

fieldset label {
    margin-right: 30px;
}

.tag-section + .tag-section {
    border-left: solid 1px white;
}
.tags {
    display: flex;
    flex-wrap: wrap;
}
.note {
    font-size: smaller;
    padding: 5px;
}
.tag {
    display: flex;
    position: relative;
    margin: 5px;
    background: white;
    color: black;
    cursor: pointer;
    justify-content: center;
    align-content: center;
    text-align: center;
}
.tag-name {
    padding: 5px 15px;
}
.tag:hover {
    z-index: +1;
    box-shadow: 0px 0px 3px white;
}
.tag .tag-negative, .tag .tag-positive {
    width: 25px;
    height: 100%;
    color: white;
    font-size: 16pt;

}
.tag .tag-negative {
    background-color: red;
}
.tag .tag-positive {
    background-color: green;
}

.control-word {
    box-sizing: border-box;
    display: inline-block;
    background-color: #5593ba;
    color: white;
    padding: 5px;
    cursor: pointer;
    border: 2px solid white;
    white-space: nowrap;
}

.v-enter-active {
    transition: all 0.3s ease-out;
}

.v-enter-from {
  transform: translateY(-100px);
  opacity: 0;
}