/* Reset & no scrolling */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: #efefef;
    font-family: Georgia, serif;
}

/* Main layout */
.wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Image */
.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.image-container img {
    max-width: 90%;
    max-height: 50vh;
    object-fit: contain;
}

/* Quote */
.quote {
    font-style: italic;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

/* Buttons */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Base button */
.btn {
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 18px;
    transition: 0.2s ease;
    text-align: center;
}

/* Primary */
.primary {
    background-color: black;
    color: white;
}

/* Secondary */
.secondary {
    background-color: transparent;
    color: black;
    border: 3px solid black;
}

/* Click effect */
.btn:hover {
    opacity: 0.85;
}

/* ---------------------- */
/* DESKTOP ADJUSTMENTS */
/* ---------------------- */
@media (min-width: 900px) {

    .image-container img {
        max-width: 900px;
        max-height: 55vh;
    }

    .quote {
        font-size: 1.2rem;
        margin-top: 10px;
        margin-bottom: 25px;
    }

    .btn {
        font-size: 1.1rem;
        padding: 14px 50px;
    }

}