* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #2f312f;
    padding: 20px;
    text-align: center;
    position: relative;
}

header h1 {
    color: #ffffff;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.logo {
    display: block;
    margin: 0 auto 20px auto; /* Add margin to position the logo above the header text */
    width: 420px;
    height: 120px;
}

.button-container {
    text-align: center;
    margin-bottom: 20px;
}

.connection-test-btn {
    display: inline-block;
    background-color: #ed8c22;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.connection-test-btn:hover {
    background-color: #d47b1f;
}


main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

h2 {
    border-bottom: 2px solid #2f312f;
    padding-bottom: 5px;
}

footer {
    background-color: #f5f5f5;
    text-align: center;
    padding: 20px;
}
