/* Reset */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
iframe{
    border: 0;
}
input{
    border-radius: 0;
    -webkit-appearance: none;
}
:focus{
    border: 0;
    outline: none;
}
a, a:hover{
    color: white;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6, small{
}
/* Layout */
@font-face {
    font-family: 'C059-Roman';
    src: url('fonts/C059-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
}

body {
    font-family: 'C059-Roman';
    background-color: black;
    color: white;
    height: 100vh;
    margin: 0;
    font-size: 60px;
    transition-duration: 0.7s;
    transition-property: opacity;
    text-transform: uppercase;
    text-align: center;
}
body.fade {
    opacity: 0;
    transition: all .1s ease-in;
}
hr{
    border: 1.5px solid white;
    margin-left: 0.75em;
    margin-right: 0.75em;
}
.first-hr{
    margin-top: 0.75em;
}
.homepage-abstract{
    padding: 0.75em;
}
.two-column{
    display: flex;
    justify-content: space-around;
}
.landing{
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.landing *{
    pointer-events: auto;
}
.gallery{
    position: relative;
    z-index: 2;
    padding-top: 82vh;
    pointer-events: none;
}
.central-image{
    width: 50%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 2em;
}
.central-image img{
    width: 100%;
    height: auto;
}
.paypal-btn{
    background: none;
    color: #ffffff;
    border: none;
    font-size: 60px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'C059-Roman';
}
.paypal-btn:hover{
    text-decoration: underline;
    text-underline-offset: 15px;
}

/* MACBOOK 13 */

@media screen and (max-width: 1440px) and (max-height: 800px) {
body{
    font-size: 48px;
}
.paypal-btn{
    font-size: 48px;
    font-family: 'C059-Roman';
}
}
/* TABLET */

@media only screen and (min-width: 701px) and (max-width: 1100px){
body{
    font-size: 45px;
}
.paypal-btn{
    font-size: 45px;
    font-family: 'C059-Roman';
}
}

/* MOBILE */

@media only screen and (max-width: 700px) {

body{
    font-size: 30px;
}
hr{
    border: 1px solid white;
    margin-left: 0.75em;
    margin-right: 0.75em;
}
.two-column{
    display: block;
}
.two-column :first-child{
    padding-bottom: 0;
}
.two-column :last-child{
    padding-top: 0;
}
.gallery{
    padding-top: 80vh;
    pointer-events: none;
    cursor: none;
}
.central-image{
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 2em;
}
.central-image img{
    width: 100%;
    height: auto;
}
.paypal-btn{
    background: none;
    color: #ffffff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'C059-Roman';
}
.paypal-btn:hover{
    text-decoration: underline;
    text-underline-offset: 7px;
}
}