/* ========== GENERAL ========== */
.wrapper {
    width: 100%;
}
a {
    color: black;
    box-shadow: 0px 0px 0px 0px inset black;
}
a:hover {
    animation: linkhover 0.25s ease-in-out forwards;
}
@keyframes linkhover {
    from {box-shadow: 0px 0px 0px 0px inset black;}
    to {box-shadow: 0px -2px 0px 0px inset black;}
}
.nav-item-link {
    color: black;
    box-shadow: 0px 0px 0px 0px inset black;
}
.nav-item-link:hover {
    animation: navhover 0.25s ease-in-out forwards;
}
@keyframes navhover {
    from {box-shadow: 0px 0px 0px 0px inset black;}
    to {box-shadow: 0px -5px 0px 0px inset black;}
}
hr {
    background: #000;
    border: 0;
}
.opacity {
    opacity: 0.5;
}
.image {
    width: 100%;
    height: auto;
}
.btnblack {
    border: 1px solid black;
    color: black;
    background: none;
}
.btnblack:hover {
    color: white;
    background-color: black;
    transition: background-color 0.5s ease;
}
.btnwhite {
    border: 1px solid white;
    color: white;
    background: none;
}
.btnwhite:hover {
    color: black;
    background-color: white;
    animation: fadeIn 5s;
    transition: background-color 0.5s ease;
}
::-moz-selection { /* Code for Firefox */
    color: white;
    background: black;
}
  
::selection {
    color: white;
    background: black;
}
/* ========== DESKTOP ========== */
@media only screen and (min-width: 769px) {
    h1 {
        font-size: 10vw;
        font-weight: 400;
        letter-spacing: -0.5vw;
        line-height: normal;
        margin: 0px;
    }
    h2 {
        font-size: 5.2vw;
        font-weight: 400;
        letter-spacing: -0.25vw;
        line-height: normal;
        margin: 0px;
    }
    h3 {
        font-family: 'Patrick Hand', 'Comic Sans', 'Courier New', Courier, monospace;
        font-size: 3.8vw;
        font-weight: 400;
        letter-spacing: -0.20vw;
        line-height: normal;
        margin: 0px;
    }
    h4 {
        font-size: 2.2vw;
        font-weight: 400;
        letter-spacing: -0.05vw;
        line-height: normal;
        margin: 0px;
    }
    p {
        font-size: 1.6vw;
        font-weight: 400;
        letter-spacing: -0.05vw;
        line-height: normal;
    }
    .psmall {
        font-size: 1.25vw;
        font-weight: 400;
        letter-spacing: -0.02vw;
        line-height: normal;
    }
    .pxsmall {
        font-size: 0.75vw;
        font-weight: 400;
        letter-spacing: -0.02vw;
        line-height: normal;
    }
    .label {
        font-size: 1vw;
        text-transform: uppercase;
        letter-spacing: 0.1vw;
        line-height: normal;
    }
    .text-bottom {
        display: flex;
        align-items: flex-end;
        height: 100%;
    }
    .button {
        padding: 3% 6% 3% 6%;
        margin: 0px;
        display: inline-block;
        border-radius: 100px;
        font-size: 1vw;
        text-transform: uppercase;
        letter-spacing: 0.1vw;
        line-height: normal;
        text-decoration: none;
    }
    .topspace {
        padding: 3% 0% 3% 0%;
        margin: 0;
    }
}

/* ========== MOBILE ========== */
@media only screen and (max-width: 768px) {
    h1 {
        font-size: 16vw;
        font-weight: 400;
        letter-spacing: -0.5vw;
        line-height: normal;
        margin: 0px;
    }
    h2 {
        font-size: 10vw;
        font-weight: 400;
        letter-spacing: -0.25vw;
        line-height: normal;
        margin: 0px;
    }
    h3 {
        font-family: 'Patrick Hand', 'Comic Sans', 'Courier New', Courier, monospace;
        font-size: 8vw;
        font-weight: 400;
        letter-spacing: -0.20vw;
        line-height: normal;
        margin: 0px;
    }
    h4 {
        font-size: 6vw;
        font-weight: 400;
        letter-spacing: -0.1vw;
        line-height: normal;
        margin: 0px;
    }
    p {
        font-size: 5vw;
        font-weight: 400;
        letter-spacing: -0.05vw;
        line-height: normal;
    }
    .psmall {
        font-size: 4vw;
        font-weight: 400;
        letter-spacing: -0.02vw;
        line-height: normal;
    }
    .pxsmall {
        font-size: 3.5vw;
        font-weight: 400;
        letter-spacing: -0.02vw;
        line-height: normal;
    }
    .label {
        font-size: 3.5vw;
        text-transform: uppercase;
        letter-spacing: 0.1vw;
        line-height: normal;
    }
    .text-bottom {
        display: flex;
        align-items: flex-end;
        height: 100%;
    }
    .button {
        width: 150px;
        padding: 8% 0% 8% 0%;
        margin: 0px;
        display: inline-block;
        border-radius: 100px;
        font-size: 3.51vw;
        text-transform: uppercase;
        letter-spacing: 0.1vw;
        line-height: normal;
        text-decoration: none;
    }
    .topspace {
        padding: 8% 0% 8% 0%;
        margin: 0;
    }
}