html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: whitesmoke;
    line-height: 1.6;
}
.container {
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 20px;
}
hr {
    margin: 60px;
}
h1 {
    font-family:'Courier New', Courier, monospace;
    font-size: 2em;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}
h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    margin-top: 50px;
    text-align: center;
}
p {
    margin-bottom: 20px;
    text-align: justify;
}
table {
    width: 90%;
    margin:auto;
    border-collapse: collapse;
    margin-bottom: 50px;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #063946;
    color: white;
}

.intro {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ws-banner {
    width: 100%;
}

.ws-button {
    margin-top: 50px;
    padding: 20px;
    text-decoration: none;
    color: white;
    background-color: #063946;
}

.footer {
    text-align: center;
    color: #063946;
}

@media only screen and (max-width: 600px) {
    .container {
        padding: 10px;
    }
    h1 {
        font-size: 1.5em;
    }
    h2 {
        font-size: 1.2em;
    }
}