* {
    box-sizing: border-box;
    margin: 0;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #252525 whitesmoke;
}

*::-webkit-scrollbar-track {
    background-color: whitesmoke;
}

*::-webkit-scrollbar {
    width: 2px;
    background-color: whitesmoke;
}

*::-webkit-scrollbar-thumb {
    background-color: #252525;
    border-radius: 1px;
}

html {
    font-family: 'Josefin Sans', sans-serif;
    min-height: 100%;
    height: auto;
}


body {
    background-color: #1b2434;
    background: radial-gradient(circle, rgba(27, 36, 52, 0) 0%, rgba(0, 0, 0, 0.7) 100%), url('/img/back-bedge-grunge.webp'), #1b2434;
    background-attachment: fixed;
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 12vw;
    right: 12vw;
    padding: 0;
    color: whitesmoke;
}

#content {
    position: relative;
    width: 100%;
    min-height: 100%;
    height: auto;
    max-width: 900px;
    margin: auto;
}

#content>div {
    position: absolute;
    display: flex;
    width: 100%;
    /* min-height: 95vh; */
    min-height: 100%;
    height: auto;
    overflow: hidden;
}


#cover-page img {
    left: 25px;
    bottom: -25px;
    height: 105%;
    object-fit: contain;
    position: absolute;
    width: auto;
    max-width: unset;
}

.black-page {
    background: rgb(31, 31, 31);
    background: radial-gradient(circle, rgba(31, 31, 31, 1) 13%, rgba(0, 0, 0, 1) 100%);
}

.shadow {
    -webkit-box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.55);
    box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.55);
}

.page-content {
    /* min-height: 900px; */
    width: 100%;
    height: auto;
    /* margin: 5% auto; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 25px; */
}


strong {
    font-weight: 500;
}

a {
    position: relative;
    color: whitesmoke;
    width: 85%;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    z-index: 99;
    margin: 5px;
}

a::after {
    content: '';
    background-color: rgb(71, 71, 71);
    opacity: 0.4;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    transition: all 0.3s;
}

a:hover {
    cursor: pointer;
}

a:hover::after {
    opacity: 0.75;
    transform: scale(102%);
}

#contact {
    margin-top: 50px;
    width: 85%;
}

#contact p {
    margin-bottom: 2rem;
}

#send-return {
    display: flex;
    margin: 30px 0;
    padding: 50px;
    justify-content: center;
    align-items: center;
    background-color: darkgreen;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 800px) {
    body {
        position: absolute;
        top: 12px;
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 0;
    }
}