body {
    margin: 0;
    background-color: #eee;
    font-family: 'Outfit', sans-serif;
    user-select: none;
}

/* NAVBAR */
.navbar {
    background-color: rgb(255, 255, 255);
    height: 70px;
    position: sticky;
    box-shadow: 0px 3px 3px 0px #ddd;
    align-items: center;
    display: flex;
}

/* Prevent dragging images */
img {
  -webkit-user-drag: none; /* Safari/Chrome */
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}






/* ?-- START -------------------------------------- NAVBAR LEFT */
.navbar-buttons {
    width: 33%;
    height: 100%;
    align-items: center;
    margin: auto;
    justify-content: right;
    position: absolute;
    right: 0;
    display: flex;
    padding-right: 12px;
    position: absolute;
}

.navbar-button {
    border: 0;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;

    transition: 0.2s;
}

.navbar-button-label {
    font-size: 16px;
    color: #5f5f5f;
    padding-left: 12px;
    padding-right: 12px;

    transition: 0.2s;
}

.navbar-button-line {
    width: 0px;
    margin-left: 12px;
    height: 2px;
    background-color: red;
    position: absolute;
    bottom: 0;

    transition: 0.2s;
}

.navbar-button:hover .navbar-button-line {
    width: calc(100% - 24px);
}
.navbar-button:hover .navbar-button-label {
    color: #3f3f3f;
}
.navbar-button:hover {
    background-color: #f8f8f8;
    cursor: pointer;
}
/* ?-- END -------------------------------------- NAVBAR LEFT */










/* ?-- START -------------------------------------- NAVBAR RIGHT */

.help-button {
    /* text-shadow: 0 0px 10px; */
    background-color: #ff3838;
    color: white;
    margin-right: 15px;
    margin-left: 15px;
    font-size: 16px;
    padding: 12px 35px;
    border-radius: 100px;
    box-shadow: 0 0 3px 1px #911d1d;

    transition: 0.1s;
}

.help-button:hover {
    background-color: #fff;
    color: #ff3838;
    box-shadow: 0 0 3px 1px #ccc;
    cursor: pointer;
    /* font-size: 17px; */
}

.help-button:active {
    cursor: pointer;
    font-size: 16px;
}

.cozy-logo-anchor {
    height: 100%;
    display: flex;
    align-items: center;
}

.cozy-logo {
    height: 65%;
    position: relative;
    left: 15px;
}
.cozy-logo:hover {
    cursor: pointer;
}

/* ?-- END -------------------------------------- NAVBAR RIGHT */













/* Footer */
.footer {
    background-color: #fff;
    /* height: 200px; */
    position: relative;
    bottom: 0;
    box-shadow: 0px 3px 3px 0px #ddd;

    display: flex;
    flex-direction: column;  /* stack children vertically */
    justify-content: space-between; /* space tabs above, copyright below */
    align-items: center;
}

.footer-tabs {
    width: 100%;
    display: flex;
    justify-content: center; /* center the sections as a group */
    gap: 80px;               /* space between sections */
    padding: 20px 0;
}

.tab-section {
    display: flex;
    flex-direction: column;  /* stack links vertically */
    align-items: flex-start; /* align links to left inside each section */
}


.copyright {
    display: flex;
    flex-direction: column;  /* stack the h3s vertically */
    align-items: center;
    /* gap: 2px;                space between h3s */
    margin-bottom: 10px;
}

.line {
    width: 90vw;
    height: 1px;
    background-color: rgba(200, 200, 200, 0.5);
    margin-bottom: 20px;
}

h3 {
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    font-weight: 400;
    color: rgb(75, 75, 75);
}

a {
    text-decoration: none;
    color: rgb(100, 100, 100);
}