
body {
    background-color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}
h1, .text-h1 {
    font-size: 48px;
    font-weight: bold;
}

h2, .text-h2 {
    font-size: 28px;
    font-weight: bold;
}

.waiting-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 80vh;
}
.shop-buttons-cont {
    display: flex;
    justify-content: center;
}
.shop-button {
    background-color: #8E2488;
    color: white;
    padding: 15px 60px;
    margin: 20px;
    border-radius: 50px;
    transition: all ease 0.2s;
    font-weight: bold;
}

.shop-button:hover {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #5c1858;
}

.logo-cont img {
    width: 300px;
}


/* --- TEXT & BACKGROUND COLOURS --- */
.text-white {
    color: #FFFFFF;
}
.text-primary {
    color: #8E2488;
}


/* --- ALIGNMENTS ---  */
.valign {
    display: flex;
    align-items: center;
}
.halign {
    display: flex;
    justify-content: center;
}
.center-text {
    text-align: center;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-row {
    display: flex;
    flex-direction: row;
}


/* Extra Small Devices (Phones) */
@media (max-width: 575.98px) {

}

/* Small Devices (Tablets) */
@media (min-width: 576px) and (max-width: 767.98px) {

}

/* Medium Devices (Laptops) */
@media (min-width: 768px) and (max-width: 991.98px) {

}

/* Large Devices (Desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {

}

/* Extra Large Devices (Large Desktops) */
@media (min-width: 1200px) {
    
}


  