html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

main {
    flex: 1; /* this makes main take up all the leftover space */
}

footer {
    background-color: #9fc5cc;
    color: white;
    padding: 10px;
    text-align: center;
}

.mainLabel{
    position: absolute;
    left: 50%;
    top: 3.2%;
    transform: translateX(-50%);
    font-family: Candara, sans-serif;
    font-size: 65px;

    -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;

    text-shadow: 3px 3px 9px #00000022;
    text-align: center;
    padding: 30px 110px 60px 110px;
    border-radius: 40px;
    background-color: #b2d5db;

    margin-top: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.mainLabelExp{
    position: absolute;
    left: 50%;
    top: 19.7%;
    transform: translateX(-50%);
    font-family: Candara, sans-serif;

    -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;

    font-size: 25px;
}

.toolbar {
    background-color: #9fc5cc; /* lime green */
    display: flex;
    justify-content: left; /* center items horizontally */
    padding: 10px 0;
}

.toolbar a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    font-size: 18px;
    user-select: none; /* no text selection */
    transition: color 0.3s ease;
}

.toolbar a:hover {
    color: #b9ebf0; /* lighter green on hover */
    transform: scale(1.05);
    transition: color 0.3s ease, transform 0.3s ease;
}

footer {
    text-align: center;
    padding: 20px 0;
    color: #555;
    font-size: 0.9em;
    border-top: 1px solid #ddd;
    margin-top: 50px;
}

.featured {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
}

.featured img {
    width: 256px;
    height: 256px;
    padding: 40px 40px 70px 40px;
    border-radius: 10px;
    background-color: #b2d5db;
    user-select: none;
    -webkit-user-drag: none;
}

.featured button {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);

    width: 160px;
    height: 57px;
    padding: 10px 20px;

    background-color: #b2d5db;
    color: #2f4f4f; /* subtle contrast text */
    font-family: Candara, sans-serif;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.featured button:hover {
    background-color: #9bb9bf;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.featured label {
    position: absolute;
    left: 50%;
    top: 7px;
    transform: translateX(-50%);
    font-family: Candara, sans-serif;
    font-size: 25px;

    user-select: none;
}

.havocHeartButtonNavigation {
    padding: 15px 30px;
    border-radius: 2px;
    width: 200px;
    height: 50px;

    background-color: #b2d5db; /* base color */
    color: #2f4f4f; /* dark slate for good contrast */
    font-size: 22px;
    font-weight: 600;
    border: none;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.havocHeartButtonNavigation:hover {
    background-color: #9bb9bf; /* slightly darker than base */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}