body {
    overflow-x: hidden;
}

main {
    margin-top: 4em;
    margin-left: 17%;
    margin-right: 10em; /* You may have to change this... later*/

    padding: 1.5em;
    /* border-right: 1px solid rgb(240, 220, 220); */

    /* Make Right side-bar and set its border-left to: */
    /* border-left: 1px solid rgb(240, 220, 220); */
}
/* --------------------------------------------- */

.h1-with-bookmark {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 20px 0;

    position: relative;
    right: 10px;

    z-index: -1;
}

.h1-with-bookmark h1 {
    font-size: 2.25em;
    font-weight: normal;
    padding-right: 10px;
}

.h1-with-bookmark img {
    height: 20px;
    cursor: cell;
}

/* --------------------------------------------- */

#two-buttons {
    display: flex;
    justify-content: space-between;

    border-bottom: 1px solid rgb(240, 220, 220);
}

.btn {
    color: white;
    font-size: 1em;
    border: none;
    border-radius: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 20px;
}

#two-buttons .right-green-btn {
    font-size: 0.9em;
    padding: 0.75em 0.75em 0.75em 1.2em;

    position: relative;
    right: 10px;

    z-index: -1;
}

/* --------------------------------------------- */

h2 {
    font-size: 1.5em;
    font-weight: normal;
    margin: 20px 0;
}

p {
    font-size: 0.9em;
    margin: 12px 0;
}

/* --------------------------------------------- */

.cards-container {
    display: flex;
    flex-direction: row; /* By Default set to this */
    justify-content: center;
    align-items: stretch;
    padding: 20px 0;
    position: relative;
    gap: 5px;
    margin-top: 0;

    z-index: -1;
}

.cards-container h2 {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 0;
}

.cards-container p {
    font-size: 0.85em;
    line-height: 1.6em;
}

.card {
    flex: 1;
    text-align: center;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0.45em;
}

.btn.green,
.btn.purple {
    padding: 0.5em;
    transition: transform 0.5s ease;
}

.scale:hover {
    transform: scale(1.05);
}

.left-card-color {
    /* background: rgb(217, 238, 225); */
    background-color: rgb(230, 246, 240);
}

.right-card-color {
    /* background: rgb(231, 233, 245); */
    background-color: rgb(244, 239, 254);
}

.green {
    background-color: rgb(10, 160, 100);
}

.purple {
    background-color: rgb(120, 80, 210);
}

#or {
    background-color: white;

    position: absolute;
    top: 50%;
    left: 50%;

    /* 
    Percentages are relative to the element itself, not the parent
    ---> 50% (X-axis) → move left by 50% of element's width
    ---> 50% (Y-axis) → move up by 50% of element's height
    */
    transform: translate(-50%, -50%); /* Syntax --> transform: translate(X, Y); */

    font-size: 14px;
    padding: 10px 6px; /* padding: TOP/BOTTOM | LEFT/RIGHT */

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 12px;
    padding: 0.8m 0.7em;

    border: 1px solid rgb(238, 238, 238);
    border-radius: 8px;

    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); */
}

/* ------------------------------------------------------------------------------- */
