@import url("global-variables.css");

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Tahoma, Verdana, sans-serif;

    margin: 0;
    padding: 0;

    background-color: var(--bg-color);
}

@media screen and (min-width: 1200px) { /* big screen */
    body {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1200px) { /* small screen */
    body {
        font-size: .7rem;
    }
}

.center {
    width: var(--max-width);
    margin: 0 auto;
}

.break-line {
    background-color: var(--text-color);
    height: 10px;
    border-radius: 5px;
}

.footer {
    display: flex;
    width: 100%;
    height: 30px;
    color: var(--text-color);
    font-size: 1em;
    font-weight: bold;
    justify-content: center;
    align-items: center;

    background-color: var(--dark-color);
}

.spacer {
    padding-top: 30px;
}

.shadow {
    box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.5);

    transition: all .25s ease;

    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.shadow:hover {
    box-shadow: 10px 10px 20px 4px rgba(0, 0, 0, 0.5);
}

.app-store {
    display: inline-flex;

    height: 50px;
    width: auto;
    aspect-ratio: 120/40;
}

.pointer-none {
    pointer-events: none;
}

.in-text-link {
    text-decoration: none;
}

.shrink-width-help {
    display: flex;
    justify-content: center;
}