html {
    color:darkblue;
    font-family:Georgia, 'Times New Roman', Times, serif, Arial, Helvetica, sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', monospace;
}

body {
    font-size: 1rem;
}

.head {
    background-color: aliceblue;
    padding: 0.3rem;
    min-height: 6rem;
}

.main {

}

.foot {
    background-color: aliceblue;
    margin: 0.5rem;
}

.leftsidebar {

}

.rightsidebar {

}

.logo {
    float: center;
    width: 5rem;
    height: 5rem;
    align-content: center;
}

.icon {
    width: 2rem;
    height: 2rem;
}

img {
    height: auto;
    max-width: 100%;
    align:center;
}

.mini {
    float: left;
    width: 150px;
    height: 150px;
    padding: 5px;
}

.box {
    min-height: 10em;
    max-height: 40em;
    marging: 1em;
    padding: 1em;
}

.headtext {
    text-align: right;
    font-size: 1em;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

.h {
    text-align: center;
}

.btn {
    background-color:blue;
    color:white;
    border: transparent 2px solid;
    margin: 0.1rem;
    border-radius: 10%;
}

.btnsocial {
    float: center;
    text-align: center;
    background-color:blue;
    color:white;
    border: transparent 2px solid;
    margin: 0.1rem;
    border-radius: 10%;
}

.btnlabel {
    float: center;
    text-align: center;
    background-color:dodgerblue;
    color:white;
    border: transparent 2px solid;
    margin: 0.1rem;
    border-radius: 10%;
}

.btncal {
    float: center;
    text-align: center;
    background-color:cornflowerblue;
    color:white;
    border: transparent 2px solid;
    margin: 0.1rem;
    border-radius: 10%;
}


@media screen and (min-width: 37.5em) {
    .container {
        gap: 0.5rem;
        display: grid;
        height: 100vh;
        grid:
        "head head head" 10em
        "leftsidebar main rightsidebar" 1fr
        "foot foot foot" 10em
        / clamp(10em, 30%, 20em) 1fr clamp(10em, 30%, 20em);
        padding: 0px;
        marging: 0px;
    }

    .head {
        grid-area: head;
    }

    .leftsidebar {
        grid-area: leftsidebar;
    }

    .main {
        grid-area: main;
    }

    .richtsidebar {
        grid-area: rightsidebar;
    }

    .foot {
        grid-area: foot;
    }
}





