* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0e1e3e;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 260px;
}

.content {
    position: relative;
    left: 50px;
    max-width: 600px;
}

.highlight {
    color: #115BFF;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 200;
    line-height: 115%;
    background-color: #a6ea9f;
    display: inline-block;
    padding: 5px 10px;
}

.main-text {
    color: #FFF;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 200;
    line-height: 115%;
    margin-bottom: 40px;
}

.details {
    color: #FFF;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 200;
    line-height: 125%;
}

.availability {
    color: #115BFF;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 200;
    line-height: 125%;
    margin-bottom: 60px;
    background-color: #a6ea9f;
    display: inline-block;
    padding: 5px 10px;
}

.button-group {
    display: inline-flex;
    gap: 0;
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 10;
}

.coming-soon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background-color: #ffffff;
    color: #0e1e3e;
    text-decoration: none;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background-color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.button-group:hover .coming-soon-btn,
.button-group:hover .arrow-btn {
    transform: translateX(5px);
}

.arrow {
    width: 20px;
    height: 20px;
}

.overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90%;
    height: auto;
    opacity: 0.8;
    pointer-events: none;
}

.trammell-logo {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 200px;
    z-index: 10;
}

@media (max-width: 768px) {
    body {
        display: block;
    }

    .content {
        position: absolute;
        left: 0;
        right: 0;
        padding: 0 50px;
        max-width: 100%;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        text-align: left;
    }

    .button-group {
        left: 43%;
        transform: translateX(-50%);
        bottom: 100px;
    }

    .logo {
        width: 300px;
        left: 50px;
        transform: translateX(0);
    }

    .overlay {
        width: 150%;
        opacity: 0.5;
    }

    .highlight {
        font-size: 35px;
    }

    .main-text {
        font-size: 35px;
    }

    .details {
        font-size: 20px;
    }

    .availability {
        font-size: 20px;
    }
}
