.shop-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    text-align: center;

    margin: 10rem 0;
}
.shop-message h1 {
    font-size: 2rem;
    color: rgba(41, 103, 177, 0.87);
    margin-bottom: 1rem;
}
.shop-message p {
    font-size: 1.2rem;
    color: #575757;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.button {
    border: 2px solid #347ed7;  /* Blue outline */
    border-radius: 15px;          /* Rounded edges */
    padding: 10px 16px;           /* Space inside the button */
    background-color: transparent;
    color: #347ed7;              /* Blue text */
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.7rem;
    transition: all 0.3s ease;

    display: inline-flex;        /* Shrink to fit text */
    justify-content: center;     /* Center text inside button */
    align-items: center;         /* Vertically center text */
    width: auto;                 /* Don’t stretch */
    white-space: nowrap;         /* Prevent text from wrapping */
    align-self: center;

    text-decoration: none;
}

.button:hover {
    background-color: #347ed7;  /* Fill with blue */
    color: white;                /* Text turns white */
}

html, body {
    height: 100%;           /* take full viewport height */
    margin: 0;              /* remove default margin */
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;                /* fills the gap between header and footer */
}

.discord_link {
    color: rgb(15, 89, 170);
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    transition: color 0.3s;
}

.discord_link:hover {
    color: rgb(2, 48, 97);
    transition: color 0.3s;
}