@font-face {
    font-family: "Vendo";
    src: URL("../fonts/Vendo.ttf") format("truetype");
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "Vendo", sans-serif;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    overflow: auto;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header {
    height: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
}

.logo img {
    height: 2rem;
}

.os-icons {
    display: none;
}

.header-buttons {
    display: flex;
    gap: 0.75rem;
}

.header-button {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.625rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    background-color: #f9f9f9;
    text-decoration: none;
    cursor: pointer;
}

.header-button:hover {
    background-color: #eaeaea;
}

.header-button .icon {
    width: 1.1875rem;
    height: 1.1875rem;
    fill: currentColor;
}

.header-button.is-mac .icon {
    transform: translateY(-0.1rem);
}

.header-button-signup {
    background-color: #007bff;
    color: white;
    border: none;
}

.header-button-signup:hover {
    background-color: #0056b3;
}

.main {
    position: relative;
    padding: 3.75rem 2rem;
    min-height: calc(100% - 7.625rem);
}

.main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background-color: #e5e5e5;
}

.footer {
    position: relative;
    height: 3.125rem;
    padding: 0 0 0 6em;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: #000;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.015rem;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background-color: #e5e5e5;
}

/* Mobile: hide second column */
@media (max-width: 767px) {
    .footer {
        justify-content: center;
        padding: 0;
    }
}