/* Copyright (C) 2024-2025 Matty Welch. All rights reserved. */
/* DO NOT REMOVE ABOVE LINE */

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

p{
    margin: 8px;
}

.center {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    justify-content: center; /*horrizontal*/
    align-items: center; /*vertical*/
    text-align: center;
}

.zero {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5 {
    /*margin: 0;
    padding: 0;*/
}

.img-title {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.link-shop:link, .link-shop:visited {
    background-color: black;
    color: white;
    border-radius: 20px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.link-shop:hover, .link-shop:active {
    background-color: #404040;
    color: white;
    border-radius: 20px;
}

.link-body {
    color: black;
    text-decoration: none;
}

.unselectable {
    -webkit-user-select: none; /* Safari 3.1+ */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+/Edge */
    user-select: none; /* Standard syntax */
}