body {
    margin: 0;
    padding-left: 10px;
    background-color: #000;
    color: #fff;
    font-family: 'Roboto Slab', serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    height: 100px;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 20px;
}

header h1 {
    margin: 0;
    font-family: 'Bitcount Grid Double', monospace;
    font-size: 96px;
}

header h2 {
    margin: 0;
    font-family: 'Roboto Slab', serif;
    font-size: 1em;
}

main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

footer {
    height: 50px;
    text-align: left;
}

#contact-btn {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    font-family: 'Roboto Slab', serif;
}

#contact-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #000;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #fff;
    width: 80%;
    max-width: 500px;
    color: #fff;
}

.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}

h3 {
    margin-top: 0;
    font-family: 'Roboto Slab', serif;
}

#verification-code {
    font-family: 'Roboto Slab', monospace;
    font-size: 24px;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #fff;
    letter-spacing: 2px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#verification-input {
    padding: 10px;
    background-color: #000;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Roboto Slab', serif;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#verify-btn {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Roboto Slab', serif;
}

#verify-btn:hover {
    background-color: #fff;
    color: #000;
}

#email-reveal {
    text-align: center;
    font-size: 18px;
}

/* Portfolio styles */
.portfolio-container {
    width: 25%;
    min-width: 200px; /* Prevent it from getting too small on mobile */
    margin-top: 20px;
}

.portfolio-container a {
    text-decoration: none;
    color: #fff;
    display: block;
}

.portfolio-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid transparent;
    transition: opacity 0.3s ease;
}

.portfolio-container a:hover .portfolio-image {
    opacity: 0.8;
}

.portfolio-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.2em;
    margin-top: 10px;
    text-align: left;
}