@font-face {
  font-family: 'Tomorrow-Regular';
  src: url('resources/Tomorrow-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tomorrow-Thin';
  src: url('resources/Tomorrow-Thin.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tomorrow-Thin';
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    background-color: #1f1f1f;
}

.container {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    padding-top: 10px;
    color: white;
    background: rgba(0, 0, 0, 0);
}

.logo {
    display: flex;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Tomorrow-Regular', 'Tomorrow';
    font-size: 1.5rem;
    color: #FF951F;
    letter-spacing: 0.2em;
}

.logo-binary {
    font-size: 0.8rem;
    margin-left: 0.5em;
    letter-spacing: 0.3em;
}

.auth-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.auth-nav p {
    color: white;
    margin: 0;
    font-size: 1rem;
}

.auth-button {
    padding: 8px 16px;
    background-color: #FF951F;
    color: #1f1f1f;
    text-decoration: none;
    font-family: 'Tomorrow-Regular';
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.auth-button:hover {
    background-color: #ff7a00;
}

.signout-button {
    background-color: #FF951F;
}

.signout-button:hover {
    background-color: #ff7a00;
    color: white;
}

footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.2);
}

h2 {
    color: white;
    font-size: 3rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

a {
    color: #FF951F;
}

.container img {
    width: 400px;
    height: auto;
    margin-bottom: 30px;
}

.container p {
    color: white;
    font-size: 2rem;
    font-weight: 300;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.two-column-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    padding: 0 20px;
}

.left-column {
    flex: 1;
    text-align: left;
}

.right-column {
    flex: 1;
    text-align: center;
}

/* Mobile styles for screens smaller than 768px */
@media (max-width: 768px) {
    .container img {
        width: 250px;
    }

    h2 {
        font-size: 2rem;
    }

    .container p {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    footer {
        padding: 15px;
        font-size: 0.9rem;
    }

    .two-column-layout {
        flex-direction: column;
        gap: 30px;
    }

    .left-column {
        text-align: center;
    }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
    .container img {
        width: 180px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container p {
        font-size: 1rem;
    }
}