﻿@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
#skiptomain {
  position: fixed;
  z-index: 9999;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F25836;
  color: white;
  padding: 20px 10px 10px 10px;
  border: 1px solid white;
  border-radius: 7px;
  white-space: nowrap;
  transition: top 2s linear;
  font-size: 16px;
  text-decoration: none;
}
#skiptomain:active, #skiptomain:focus, #skiptomain:hover {
  top: -15px;
  transition: top 0s linear;
}

* {
  font-family: Barlow, sans-serif;
}

html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

main a {
  color: #32353c;
  text-decoration: none;
  border-bottom: 1px solid rgba(50, 53, 60, 0.2);
}
main a:hover {
  color: #F25836;
  border-bottom: 1px solid #32353c;
}

html {
  position: relative;
  min-height: 100vh;
}

body {
  min-height: 100vh;
}

img {
  height: auto;
  max-width: 100%;
}

header img {
  max-width: 260px;
}

.footer {
  position: relative;
  width: 100%;
  bottom: 0px;
  background-color: #32353c;
  padding: 25px 15px;
  color: white;
}
.footer a {
  color: white;
}
.footer a:hover {
  color: #c3c3c3;
}
.footer .version {
  position: absolute;
  bottom: 2px;
  right: 4px;
  opacity: 0.2;
  font-size: 10pt;
}

.rating {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.rating input {
  display: none;
}
.rating label {
  font-size: 32px;
  cursor: pointer;
}
.rating label:hover,
.rating label:hover ~ label {
  color: orange;
}
.rating input:checked ~ label {
  color: orange;
}

.pic-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  opacity: 0.35;
  transition: opacity ease-in-out 0.5s;
}
.pic-grid img:hover {
  opacity: 1;
}
