html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    /*background-image: repeating-linear-gradient(red, yellow 40%, green 50%);*/
    /*background: url(../back.jpg) fixed center;*/
    /*background-image: linear-gradient(red, green, Blue);*/
}

.filebasket {
    background-color: white;
    border: 1px dotted black;
    width: 100%;
    height: auto;
    min-height:100px;
    text-align:center;
    vertical-align:middle;    
}

.footer-msg {
    margin-left:50px;
    font-size:medium;
    font-weight:400;
    color:white;
}

.headerMsg {
    
}
/*
.container {
    display:grid;
}*/



.navbar-brand {
    font-family:'Futura Md BT';
    font-size:2em;
    font-weight:200;
}


.Acryl {
    background-color:white;
    opacity:0.6;    
    padding:20px;
}


.main-head {
    grid-area: header;
}
.content {
    grid-area: content;
}

.left-menu {
    grid-area: left-menu;
    width: 100%;
    display: block;
    /*margin-top: 50px;*/    
}
    .left-menu a {
        background-color: #eee; /* Grey background color */
        color: black; /* Black text color */
        display: block; /* Make the links appear below each other */
        padding: 12px; /* Add some padding */
        text-decoration: none; /* Remove underline from links */
    }
        .left-menu a:hover {
            background-color: #ccc; /* Dark grey background on mouse-over */
        }

        .left-menu a:active {
            background-color: #04AA6D;  /*Add a green color to the "active/current" link */
            color: white;
        }

.ad {
    grid-area: ad;
    min-width: 200px;
/*    border: 1px solid #ccc;*/
}

.footer{
    grid-area:footer;
}

.wrapper {
    margin:auto;
    /*border: 1px solid black;*/
    display: grid;
    gap:20px;
    grid-template-areas:
        "header"
        "left-menu"
        "content"        
        "ad"
        "footer";
}

@media (min-width: 500px) {
    .wrapper {
        grid-template-columns: 1fr 3fr;
        
        grid-template-areas:
            "header header"
            "left-menu content"            
            "footer ad";
    }
    .content{
        margin-right:10px;
    }
    .left-menu {
        width: 200px;
        margin-left: 10px;
    }

}

@media (min-width: 768px) {
    .wrapper {
        grid-template-columns: 1fr 4fr 1fr;
        grid-template-areas:
            "header header header"
            "left-menu content ad"
            "footer footer footer";
    }
    .ad{
        margin-right:10px;
    }
    .left-menu {
        width: 300px;
        margin-left: 10px;
    }
}


.currentMenuItem {
    background-color: lightgreen!important;
    /*color:forestgreen!important;*/
    font-weight: 600;
}