@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700&display=swap');

body {
    font-family: 'Quicksand', Arial, sans-serif;
    margin: 0;
    background: #181a1b;
    color: #f3f3f3;
    min-height: 100vh;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 0;
    color: #ffb347;
    text-shadow: 1px 2px 8px #0008;
}

h2 {
    font-size: 1.3rem;
    text-transform: capitalize;
    margin: 0;
    color: #ffd580;
}

h3 {
    font-size: 2rem;
    color: #ffb347;
    margin-bottom: 0.5rem;
}

img {
    display: block;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 24px #0006;
    margin-bottom: 0.5rem;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    background: #23272a;
    border-radius: 24px;
    box-shadow: 0 8px 32px #000a;
    overflow: hidden;
}

#landing {
    background: linear-gradient(135deg, #23272a 70%, #ffb34722 100%);
    border-bottom: 2px solid #444;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

#landing-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 3rem 1rem;
}

#landing-text-inner {
    background: #222c;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 2px 16px #0004;
    max-width: 500px;
    margin: auto;
    border: 2px dashed #ffd580;
    transition: box-shadow 0.3s;
}

#landing-text-inner:hover {
    box-shadow: 0 4px 32px #ffb34744;
}

#landing-text h2 {
    color: #ffd580;
    font-size: 1.2rem;
    margin-top: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}


.btn {
    padding: 0.7rem 2.2rem;
    border: none;
    display: inline-block;
    margin: 2rem 0 0;
    border-radius: 30px;
    text-decoration: none;
    color: #23272a;
    background: linear-gradient(90deg, #ffd580 60%, #ffb347 100%);
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px #0004;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn:hover {
    background: linear-gradient(90deg, #ffb347 60%, #ffd580 100%);
    color: #181a1b;
    transform: scale(1.05);
}

#header {
    padding: 1.5rem;
    text-align: center;
    background: #23272a;
    color: #ffd580;
    border-bottom: 1px solid #444;
}

#header h2 {
    border-left: none;
    border-right: none;
    display: inline-block;
    padding: 0.5rem 2rem;
    background: #181a1b;
    border-radius: 12px;
}

.caption {
    padding: 1rem;
    text-align: center;
    background: #23272a;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px #0003;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    margin: auto;
    color: #ffd580;
    background: #181a1b;
    border-top: 2px solid #444;
}

footer h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #ffb347;
}

footer p strong {
    color: #fff;
}

@media screen and (min-width: 500px) {
    #landing {
        display: flex;
        height: 100%;
    }

    #landing-text {
        height: 100vh;
    }

    #landing-image {
        height: 100vh;
    }
}

@media screen and (min-width: 700px) {
    .btn {
        padding: 1rem 3rem;
        font-size: 1.2rem;
    }
}
.landing-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 24px #0006;
    margin-bottom: 1.2rem;
    border: 3px solid #ffd580;
    background: #23272a;
    display: block;
    margin-left: auto;
    margin-right: auto;
}