body {
            
    margin: 0;
}
body[data-theme="dark"] {
    background-color: #121212;
    color: #ffffff;
}

body[data-theme="light"] {
    background-color: #ffffff;
    color: #000000;
}
html {
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
}   
.custom-color {
    background-color: #ee79a4;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.6s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.column {
    float: left;
    width: 33.33%;
    /* Hide all elements by default */
}

#navbar {
    background-color: #333;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    display: block;
    transition: top 1.3s;
}
img.sticky {
    position: sticky;
    top: 0;
    width: 200px;
}

.menu-text {
    font-size: 30px;
    cursor: pointer;
    text-align: center;
}
.markdown {
    font-size: 20px;
    padding: 2px;
    border: 1px solid #3f3e3e;
    margin: 6px;
    color: #01473a;
    background-color: #bdbdbd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/src/media/wide_home.webp");
    height: 25%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   
    color: white;
}

.hero-text button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 5px 10px;
    color: black;
    background-color: #ddd;
    text-align: center;
    border-radius: 25px;
    cursor: pointer;
}

.hero-text button:hover {
    background-color: #555;
    color: white;
}
.custom-font-size {
    font-size: 20px;
}
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
    .hero-text, button {
        transform: scale(0.5);
        padding: 5px 10px;
        font-size: 12px;
    }
}