 :root {
     --primary-color: #00a86b;
     color-scheme: light !important;
 }

 body {
     background-color: #f8f9fa;
     font-family: 'Oswald', sans-serif;
     min-height: 100vh;
     display: flex;
     flex-direction: column;
 }

 .main-content {
     flex-grow: 1;
 }

 .logo-circle {
     width: 150px;
     height: 150px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 .brand-name {
     font-weight: bold;
     font-size: 2.1rem;
     color: var(--primary-color);
 }

 .muted-note {
     color: #7a8288;
     font-size: 1.6rem;
     margin-bottom: 30px;
 }

 .link-card {
     position: relative;
     border-radius: 10px;
     overflow: hidden;
     aspect-ratio: 1 / 1;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: transform 0.2s ease;
 }

 .link-card:hover {
     transform: scale(1.05);
 }

 .link-card img {
     position: relative;
     top: -0.7rem;
     max-width: 55%;
     max-height: 55%;
     z-index: 1;
 }

 .link-overlay {
     position: absolute;
     bottom: 0;
     width: 100%;
     padding: 5px;
     text-align: center;
     color: white;
     z-index: 2;
 }

 footer {
     position: absolute;
     width: 100%;
     background-color: #00A86B80;
     text-align: center;
     color: white;
     padding: 10px 0;
 }

 /* wave container */
 .wave-container {
     position: relative;
     margin-top: 8rem;
 }


 .wave-footer {
     background-color: #00a86b;
     /* jade color */
     color: white;
     text-align: center;
 }

 .wave-top {
     display: block;
     width: 100%;
 }

 .font-dancing-script {
     font-family: 'Dancing Script';
 }

 .text-primary-color{
    color: var(--primary-color);
 }

 .font-lato{
    font-family: 'Lato';
 }

 .font-roboto{
    font-family: 'Roboto';
 }

 .font-open-sans{
    font-family: 'OpenSans';
 }

 @font-face {
     font-family: 'Oswald';
     src: url('../fonts/Oswald/Oswald-VariableFont_wght.ttf') format('truetype');
 }

 @font-face {
     font-family: 'Roboto';
     src: url('../fonts/Roboto/Roboto-VariableFont_wdth\,wght.ttf') format('truetype');
 }

 @font-face {
     font-family: 'Lato';
     src: url('../fonts/Lato/Lato-Regular.ttf') format('truetype');
 }

 @font-face {
     font-family: 'OpenSans';
     src: url('../fonts/Open_Sans/OpenSans-VariableFont_wdth\,wght.ttf') format('truetype');
 }

 @font-face {
     font-family: 'Dancing Script';
     src: url('../fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf') format('truetype');
     font-weight: 800;
 }

 @media (min-width: 992px) {
     .container {
         padding-left: 150px;
         padding-right: 150px;
     }
 }

 @media (min-width: 1200px) {
     .custom-col-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .container {
         padding-left: 300px;
         padding-right: 300px;
     }
 }
