@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,500;1,300&display=swap');


body {
    font-family: "Rubik";
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: white;
}

header {
    background: white;
    padding: 20px;
    text-align: center;
    color: white;
}

.h3 {
    font-size: larger;
}

.text-white {
    color: white;
}
.text-black {
    color: #000000;
    font-size: larger;
}
.text-dark-grey {
    color: #575759;
}
.text-light-grey {
    color: #a7a9ac;
} 
.text-orange {
    color: #fcb040;
}
.text-green {
    color: #39b54a;
}

.logo img {
    max-width: 150px;
    margin-bottom: 10px;
}

/*This is the grey section in the middle */
.benefits, .upload-files, .logs {
    padding: 40px;
    background: #575759; /* Dark grey background */
    color: white;
    text-align: center;
}


/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}

