



@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

* {
    margin-left: 60px;
    margin-right: 60px;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', sans-serif;
}

body {
    background-color: #eaeaea;
    color: #333333;
    overflow-x: hidden;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative; /* Added for absolute positioning context */
}

.timestamp {
    padding: 0;
    margin-right: 0;
    margin-top: 60px;
    margin-bottom: 160px;
}

.datetime {
    text-align: right;
    padding: 0;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.body-container {
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 300px;

}

.container {
    padding: 0;
    margin: 0;
    position: relative;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    max-width: 800px;
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0;
    padding: 0;
}

.nav-button {
    position: relative;
    padding: 10px 70px;
    font-size: 20px;
    text-decoration: none;
    color: #333333;
    border: 1px solid #333333;
    border-radius: 12px;
    overflow: hidden;
    transition: color 0.3s ease;
    text-align: center;
    margin: 0;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #333333;
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-button:hover {
    color: #eaeaea;
}

.nav-button:hover::before {
    width: 100%;
}

.description {
    font-size: 20px;
    line-height: 32px;
    max-width: 540px;
    margin: 0;
}

.footer-name {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.name {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0; /* Removes any potential spacing */
}

.name img {
    width: 1320px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    vertical-align: bottom; /* Ensures no extra space below image */
}

/* Tablet View */
@media (max-width: 768px) {

    * {
        margin: 0;
        padding-left: 8px;
        padding-right: 8px;
    }

    .body {
        padding: 0;
    }

    .content-wrapper {
        grid-template-columns: 1fr, 4fr;
        max-width: 700px;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 0;
        margin-top: 40px;
    }

    .description {
        font-size: 20px;
        line-height: 32px;
        padding: 0;
        text-align: left;
    }

    .nav-buttons {
        gap: 1rem;
        
    }

}

/* Mobile View */
@media (max-width: 480px) {

    * {
        margin: 0;
        padding-left: 8px;
        padding-right: 8px;
    }
    .datetime {
        font-size: 1.25rem;
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
     
    }

    .nav-buttons .nav-button {
        font-size: 18px;
        padding: 10px 50px;
    }

    .description {
        font-size: 18px;
        line-height: 28px;
        text-align: center;
    }


    .content-wrapper {
        margin-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers content horizontally */
        justify-content: center; /* Centers content vertically */
        text-align: center; /* Ensures text is centered */
    }

    .nav-buttons {
        width: 100%;
    }

    .description {
        padding: 0;
    }    

    .body-container {
        margin-bottom: 20px;
    }
    .name img {
        width: 100%;
    }
    .content-wrapper {
        gap: 2rem;
    }
    
}