/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Calibri, sans-serif;
    background-color: #f4f4f4;
    color: #060606;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header styling */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

/* Main content styling */
main {
    flex: 1;
    padding: 2rem;
}

/* Downloads section styling */
.downloads {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.downloads h2 {
    margin-bottom: 1rem;
    text-align: center;
}

.downloads ul {
    list-style-type: none;
}

.downloads li {
    margin-bottom: 1rem;
}

.downloads a {
    display: block;
    background: #007BFF;
    color: #fff;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.downloads a:hover {
    background: red;
    }
.instructions {
    margin-top: 20px;
    padding: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: medium;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
}


/* Footer styling */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.logo {
    margin-left: 20px; margin-top: 20px;/* Adjust the value to the desired amount of space */
  }
