/* Global Style for entire page */
body {
    font-family: sans-serif;
    text-align: center;
    margin: 0;
    min-width: 250px;

}

/* Navigation Section Style */
nav {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: right;
}

/* Navigation Link Style */
nav a {
    margin: 10px;
    color: #686868;
    text-decoration: none;
}

/* Header Section Style */
header {
    background-color: #f5f5f5;
    padding: 100px;
    display: flex;
    justify-content: center;
    height: 200px;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    margin-top: 12px;
}

header h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 60px;
    margin-top: 12px;
}

header a {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 16px;
    text-decoration: none;
    border-radius: 12px;
}

/* Main Content Style */
main {
    padding: 24px;
    text-align: left;
    max-width: 800px;
    margin: auto;
    line-height: 1.5;
}

main section {
    margin-bottom: 50px;
}

@media (max-width:600px) {

    header {
        height: 150px;
        padding-top: 70px;
        padding-bottom: 130px;
    }

    header h1 {
        text-align: center;
        margin-top: 20px;
        font-size: 2.9rem;
        line-height: 2.8rem;
    }


    header h2 {
        font-size: 1.2rem;
    }

    .title {
        width: 300px;
    }
}

@media (max-width:350px) {
    nav a {
        font-size: 0.9rem;
    }

    header {
        height: 120px;
        padding-left: 20px;
        padding-right: 20px;
    }

    header h1 {
        font-size: 2.7rem;
        margin-top: 10px;
    }

    header h2 {
        font-size: 1rem;
    }

    .title {
        width: 180px;
    }
}