

body {
  background: url(../../static/images/background-1.png) center center / cover no-repeat;
}

body.dark {
    background: url(../../static/images/background-1_dark.png) center center / cover no-repeat;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}


.support-grid{
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.section-box{
    background: #fff;
    padding: 15px 20px 15px 20px;
    position: relative;
    margin: 10px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 40%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.section-box h2 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #333;
}

.section-links {
    text-align: left;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.section-links li {
    margin-bottom: 6px;
}

.section-links a {
    color: #0077cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.section-links a:hover {
    color: #005a9e;
    text-decoration: underline;
}
