/* 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;
    height: 200px;
}

header h1 {
    font-size: 4rem;
    margin-bottom: 0px;
    margin-top: 0px;
}

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

header a {
    background-color: #505bfd;
    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;
}


.container {

    max-width: 800px;
    margin: auto;
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    width: 200px;
    height: 60px;
}

@media (max-width:600px) {

    header {
        padding: 50px;
        height: 250px;
    }

    header h1 {
        font-size: 3.5rem;
        margin-top: 20px;
    }

    header h2 {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }

    header a {
        padding: 8px;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    .button {
        height: 40px;
        width: 155px;
    }


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

        header {
            padding: 30px;
            height: 260px;
        }

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

        header h2 {
            font-size: 1rem;
            margin-bottom: 40px;
        }

        header a {
            padding: 8px;
            font-size: 0.8rem;
            border-radius: 8px;
        }

        .button {
            width: 180px;
            height: 40px;
        }
    }
}