body, html{
    margin: 0%;
    padding: 0%;
}
body{
    height: 100%;
    width: 100%;
}

@media (prefers-color-scheme: dark) {
    .site-theme{
        background-color: #3D3D3D;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: azure;
    }
    .menu-theme{
        background-color: #484848;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 400;
    }
    .menu-item a{
        padding-left: 40px;
        text-decoration: none;
        color: azure;
    }
    #menu-logo{
        position: relative;
    }
    #menu-logo::after {
        content: "";
        background: #ccc;
        position: absolute;
        bottom: 25%;
        right: 0;
        height: 40%;
        width: 1px;
    }
    .page-card-text{
        color: azure;
    }
    .page-card-text-sub{
        color: azure;
    }
}

@media (prefers-color-scheme: light) {
    .site-theme{
        background-color: #FFFFFF;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #3D3D3D;
    }
    .menu-theme{
        background-color: #FFFFFF;
        color: #3D3D3D;
        border-bottom: 1px #3D3D3D;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 400;
    }
    .menu-item a{
        padding-left: 20px;
        text-decoration: none;
        color: #3D3D3D;
    }
    #menu-logo{
        position: relative;
    }
    #menu-logo::after {
        content: "";
        background: #3D3D3D;
        position: absolute;
        bottom: 25%;
        right: 0;
        height: 40%;
        width: 1px;
    }
    .page-card-text{
        color: azure;
    }
    .page-card-text-sub{
        color: azure;
    }
}

.menu-grid{
    height: 60px;
    max-width: 100%;
    display: grid;
    grid-template-columns: 10% auto 10%;
}

.menu-item{
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
}

.menu-item-sub:hover{
    transition: 0.4s ease-in-out;
    transform: scale(1.05,1.05);
}

.menu-item-sub{
    transition: 0.4s ease-in-out;
    display: flex; 
    flex-direction: row; 
    padding-left: 40px; 
    align-items: center;
    cursor: pointer;
}

.menu-title{
    padding-left: 5px;
    font-weight: 500;
    font-size: 24px;
    cursor: pointer;
}

.menu-logo{
    max-width: 36px;
    cursor: pointer;
}

.page-cards-container{
    width: 100%;
    height: max-content;
    display: grid;
    grid-template-columns: auto auto;
}

.page-title{
    grid-column: 1 / span 2;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 75px;
    padding-bottom: 75px;
}
.page-title h1{
    font-size: 64px;
    font-weight: 400;
}
.page-title > h1 > span{
    background: -webkit-linear-gradient(45deg,#09ebff, #06D2B5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-cards-container-sub{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.page-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 500px;
    min-height: 500px;
    width: 50%;
    height: 50%;
    border-radius: 25px;
    transition: 0.7s ease-in-out;
}

.page-card-text{
    font-weight: 400;
    font-size: 64px;
    text-decoration: none;
}
.page-card-text-sub{
    font-weight: 400;
    font-size: 24px;
    text-decoration: none;
}

.page-card:hover{
    transition: 0.4s ease-in-out;
    transform: scale(1.05,1.05);
}
