@font-face {
    font-family: "BitPotionExt";
    src: url("../resources/BitPotionExt.ttf");
}

body {
    background-color: #E9E9CE;
    background-image: none;
    height: 98vh;
    margin: auto;
    font-family: "BitPotionExt";
    text-transform: uppercase;
}

@media screen and (max-width: 800px) {
    body {
        border: solid #1c1c1d 30px;
        height: 94vh !important;
    }

    .container {
        width: 90% !important;
        min-width: unset !important;
        max-width: none !important;
        padding: 0 !important;
    }

    .title {
        border-top: none !important;
        border-bottom: none !important;
        font-size: 550% !important;
        text-align: center;
    }

    .info_container {
        border: none !important;
        margin: auto;
    }

    h2 {
        font-size: 350% !important;
    }

    .contact {
        text-align: center;
        font-size: 24px !important;
    }

    .buttons {
        justify-content: space-between;
    }

    .btn {
        font-size: 150% !important;
    }
}

@media screen and (min-width: 800px) {
    body {
        background-image: url(../resources/background_webpage.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
}

html {
    margin: 0 auto;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
    width: 70vw;
    max-width: 1060px;
    min-width: 900px;
    margin: auto;
    padding-top: 24px;
    padding-right: 18px;
}

.title {
    font-size: 1000%;
    border-top: #1c1c1d 4px solid;
    border-bottom: #1c1c1d 4px solid;
    width: 90%;
    text-align: center;
    margin: 30px 0 20px 0;
}

.divider {
    width: 90%;
    background-color: #1c1c1d;
    height: 30px;
}

.info_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: #1c1c1d 20px double;
    margin-top: 20px;
    width: 86%;
    height: auto;
    justify-content: space-between;
}

h2 {
    margin: 0;
    font-size: 600%;
}

.wishlist-image {
    display: flex;
    justify-content: center;
}

.wishlist-image img {
    width: 92%;
}

.contact {
    padding: 0;
    margin: 0 auto;
    display: block;
    color: #1c1c1d;
    text-decoration: none;
    font-size: 32px;
}

.buttons {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    padding: 20px 0;
    border-bottom: #1c1c1d 4px solid;
    width: 90%;
    margin-bottom: 20px;
}

.btn {
    background-color: #1c1c1d;
    color: #E9E9CE;
    padding: 10px;
    margin: 5px;
    border: 3px double;
    font-size: 200%;
    text-decoration: none;
    text-transform: capitalize;
}