  /* Simple CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    line-height: 1.6;
    background-color: #000000;
    color: #FFF;
}

.background {
    position: fixed;
    background-image: url('../xspire-background.webp');
    background-repeat: no-repeat;
    background-position: bottom;
    min-width:100vw;
    min-height:100vh;
}

.header {
    position: relative;
    padding: 1rem;
    margin-top:10%;
    text-align: center;
    width:100vw;
    font-family: "PoppinsXBold", Arial, Helvetica, sans-serif;
    font-size: 82px;
    line-height: 82px;
}

.subheader {
    position: relative;
    padding: 1rem;
    margin-top: 2%;
    text-align: center;
    width: 100vw;
    font-family: "PoppinsRegular", Arial, Helvetica, sans-serif;
    font-size: 40px;
    line-height: 40px;
}

.mailbutton {
    position: relative;
    padding: 0.75rem;
    margin-top: 2%;
    text-align: center;
    width: 30vw;
    font-family: "PoppinsRegular", Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 20px;
    border-radius: 25px;
    border: 2px solid #FFF;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(0, 0, 50, 0.4);
    color:#FFF !important;
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

a:hover > .mailbutton {
    box-shadow: 3px 3px 15px rgba(36, 36, 36, 0.5);
}


.xpire_logo {
    position: absolute;
    bottom:40px;
    right:40px;
    background-image: url('../Xspire_Logo_RGB.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    min-width: 300px;
    min-height: 100%;
}

.main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-top: 0;
}

/* Responsive typography */
@media (min-width: 600px) {
    body {
        font-size: 1.125rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .header {
        font-size: 320%;
        line-height: 60px;
        width:100vw;
    }

    .subheader {
        font-size: 26px;
        line-height: 26px;
    }

    .mailbutton {
        width: 80vw;
        margin-top: 6%;
    }

    .xpire_logo {
        position: relative;
        bottom:unset;
        right:unset;
        margin-top:20px;
        margin-left: auto;
        margin-right: auto;
        background-image: url('../Xspire_Logo_RGB.png');
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: contain;
        min-width: 200px;
        min-height: 100%;
        width: 200px;
        height: 100px;
        -webkit-filter: drop-shadow(0px 0px 10px #FFF);
        filter: drop-shadow(0px 0px 10px #FFF);
    }
}


/* Poppins font from Google Fonts */

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "PoppinsRegular", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "PoppinsXBold", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

@font-face {
  font-family: "PoppinsRegular";
  src: url('Poppins-Regular.ttf') format('truetype');
}

@font-face {
  font-family: "PoppinsXBold";
  src: url('Poppins-ExtraBold.ttf') format('truetype');
}