@media screen and (min-width: 800px) {
    .section-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 20px;
        grid-template-rows: minmax(100px, auto);
    }
}

nav {
    background-image: linear-gradient(to right bottom, #c42766, #be308b, #a945b1, #805bd2, #1270eb);
}

footer {
    background-image: linear-gradient(to right bottom, #c42766, #be308b, #a945b1, #805bd2, #1270eb); padding: 20px; margin: -8px;
}


#fullscreen-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #333;
background-image: linear-gradient(to right bottom, #c42766, #be308b, #a945b1, #805bd2, #1270eb);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    gap: 30px;
    font-family: 'Noto Sans Thai', sans-serif;
}



#fullscreen-menu a {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 25px;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {
    #hamburger {
        display: flex !important;
    }
}

