:root {

    --color1: #ffffff;
    --color2: #000000;
    --color3: #e4ebf4;
    --color4: #d4dbe4;
    --color5: red;
}

* {
    box-sizing: border-box;
}

@font-face {
    font-family: GothicBold;
    src: url("fonts/TradeGothicLTBold.ttf");
}

@font-face {
    font-family: GBOblique;
    src: url("fonts/TradeGothicLTBoldOblique.ttf");
}

html, body {
    height: 100%;
}

body {
    background-color: var(--color1, red);
    font-family: GothicBold;
    font-size: 18px;
    color: var(--color2, red);
}

div.navigation {
    font-size: 15px;
    background-color: var(--color1);
    float: left;
    width: 100%;
    padding: 15px;
    text-align: center;
    margin-bottom: 10px;
}

div.title {
    float: left;
}

div.links {
    float: right;
}

div.link {
    float: left;
    font-size: 25px;
    margin-top: 7.5px;
    margin-left: 15px;
    font-family: GBOblique;
}

div#img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
}

div.container {
    display: inline-block;
    text-align: center;
}

div.containerV1 {
    /*width: 50%;*/
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
}

div.containerV2 {
    width: 100%;
    height: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
}

div.containerV3 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
}

div.containerV4 {
    width: 50%;
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
    margin: auto;
}

@media only screen and (max-width: 767px) {
    div#img {
        max-width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }
}

h1 {
    font-size: 20px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

h2 {
    font-size: 13px;
    font-style: italic;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: rgb(255, 102, 0);
}

p {
    font-size: 15px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

p.V2 {
    font-size: 15px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--color5);
}

a {
    text-decoration: none;
    color: var(--color2);
    font-family: GothicBold
}

a:hover {
    color: var(--color5);
}

div.blackbox {
    background-color: var(--color1);
    border: 3px solid black;
    margin-top: 20px;
    width: fit-content;
    text-align: center;
}

div.column {
    padding: 5px;
    margin: 5px;
    border: 2px solid var(--color4);
    border-radius: 3px;
    margin-bottom: 10px;
    background-color: var(--color1);
}

input[type=checkbox] {
    margin: 10px;
}

input#newButton {
    background-color: var(--color);
    color: var(--color2);
    margin: 5px;
    border: 2px solid var(--color4);
    border-radius: 3px;
    font-family: OregonFont;
    font-size: 12px;
    text-align: center;
}

.shop_link {
    width:100%;
    height:100%;
}




/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    height: 1000px;
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
  
/* Hide the images by default */
.mySlides {
    display: none;
}
  
/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
  
/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
  
/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
  
.active, .dot:hover {
    background-color: #717171;
}
  
/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
  
@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
  
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}