*,
* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'ChargerEco';
    src: url(../assets/charger-eco-font/ChargerEco-14JB.otf) format('opentype');
}

@font-face {
    font-family: 'Ballista';
    src: url(../assets/ballista-font/BallistaRegular-JRgGx.ttf) format('truetype');
}

@font-face {
    font-family: 'NovaCut';
    src: url(../assets/nova-font/NovaCut-jj4M.ttf) format('truetype');
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-x: auto;
}

main {
    display: flex;
    position: relative;
    width: fit-content;
    /* border: 4px solid lightgreen; */
    background-color: rgba(0, 0, 0, .7);
    box-shadow: 0 0 20px 15px rgba(0, 0, 0, .7);
    max-width: 80%;
}

img {
    /* position: absolute; */
    max-width: 600px;
    transform: scale(1.1);
}

h1,
h2 {
    font-family: NovaCut;
    font-size: 28px;
    text-decoration: underline;
}

.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    /* right: 0;
    bottom: 0; */
    /* margin: auto; */
    width: 100%;
    height: 100%;
    color: white;
}

.about p {
    width: fit-content;
    font-family: ChargerEco;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    font-size: 19px;
    line-height: 1.25;
    text-align: center;
}

.about a {
    white-space: nowrap;
    color: white;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

a p {
    color: white;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color .3s ease;
    text-decoration: none;
    width: fit-content;
    margin: 10px auto;
    font-size: 16px;
    z-index: 9;
    letter-spacing: 1px;
    transition: box-shadow .2s;
    padding: 3px 6px !important;
  /* Safari */
  -webkit-user-select: none;
  /* IE 10 and IE 11 */
  -ms-user-select: none;
  /* Standard syntax */
  user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
}

a p:active {
    color: white;
    /* background-color: rgb(139, 112, 93); */
    box-shadow: 0 0 10px 2px white;
    cursor: pointer;
}

#buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}


@media screen and (max-width: 800px) {
    main {
        box-shadow: 0 0 2.5vw 1.875vw rgba(0, 0, 0, .7);
        font-size: 2vw;
    }

    img {
        max-width: 75vw;
    }

    h1,
    h2 {
        font-size: 3.5vw;
    }

    .about p {
        letter-spacing: .125vw;
        font-size: 2.375vw;
    }

    a p {
        border-radius: 0.625vw;
        margin: 1.25vw auto;
        font-size: 2vw;
        letter-spacing: .125vw;
        padding: 0.375 .75vw;
    }

    a p:hover {
        box-shadow: 0 0 1.25vw .25vw white;
    }
}