a {
    color: inherit;
    text-decoration: none;
}

body {
    background-color: #EFF4F8;
}

h1 {
    margin-bottom: 40px;
}

main {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.navBtn {
    width: 250px;
    min-height: 180px;
    flex-shrink: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    border: solid 2px #ccc;
    font-size: 1rem;
    color: #282828;
    text-align: center;
    transition: 0.2s all ease-in-out;
}

.navBtn strong {
    color: #0B5504;
}

.navBtn p {
    font-size: 0.8rem;
}

.navBtn:hover {
    border: solid 2px #0B5504;
    box-shadow: 0 0 30px #c9c5c5;
}

.navBtn svg {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.devBtn svg {
    width: 45px;
    height: 45px
}

.navBtn[href="/db-interface"] svg {
    width: 35px;
    height: 35px;
}

.navBtn svg path {
    fill: #0B5504;
}

.underline {
    text-decoration: underline;
}

