﻿
/* desktops and laptops */

@media (orientation: landscape) and (max-device-aspect-ratio: 17/9)
{
    body {
        background-color: #f5f6f7;
        margin: 0px;
    }

    top{
        display: none;
    }

    bottom {
        display: none;
    };

    left{
        display: contents;
    }

    right{
        display: contents;
    }

    h1{
        font-size: 2em;
        font-family: local72;
        font-weight: bold;        
    }

    h2 {
        font-size: clamp(14px, 1.2vw, 18px);
        font-weight: bold;
        font-family: local72;
        margin: 0.5em 0em 0em 0em;
    }

    h3{
        font-size: 1.3em;
        font-family: local72;
        font-weight: normal;
        margin: 0;
        max-width: 100%; /* Ensure it stays within the container */
        word-wrap: break-word; /* Allow wrapping if needed */
        overflow-wrap: break-word; /* Ensure long words break properly */
    }

    h4 {
        font-size: 1vw;
        font-family: local72;
        font-weight: normal;
        margin: 0;
    }

    p {
        display: inline-block;
        font-family: local72;
        font-size: clamp(14px, 1vw, 18px);
        margin: 1.0em 0.5em 0em 0em;
    }

    footer {
        font-family: local72;
        font-size: 1vw;
        display: block;
        margin-block-start: 1vw;
        margin-block-end: 1vw;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
    }

    .container{
        display: grid;
    }

    .imgSAPlogo {
        height: 2.5em;
        min-height: 2.5em;
    }

    .topContainer{
        position: static;
        width: 100%;
        height: 15em;
        background-color: white;
    }

    .lowerContainer{
        position: relative;
        display: grid;
        grid-auto-flow: row dense;
        grid-template-columns: repeat(auto-fill, minmax(18em, 18em));        grid-gap: 3em;
        margin: 2em 0em 3em 3em;
        justify-items: start;
    }
    
    .innerContainer {
        display: grid;
        grid-template-rows: auto auto auto;
        gap: 1em;
    }

    .innerContainerImage{
        width: 92%;
    }

    .tile{
        background-color: white;
        border-radius: 5px;
        transition: 0.2s;
        filter: drop-shadow(1px 1px 10px #88888855);
        padding: 1.5em 0em 1.8em 1.5em;
        width: 15em;
        height: 100px;
        min-width: 15em;
    }
    
    
    .tileIcon{
        width: 2em;
        min-width: 2em;
    }

    .tile:hover{
        border: 0px;
        cursor: pointer;
        filter: drop-shadow(0px 0px 1px #888888);
    }

    .topContainerContent{
        display: grid;
        margin: 2em 3em;    
    }

    .headerTitleContainer{
        justify-self: left;
        width: 18em;
    }

    .headerTextContainer{
        width: 40vw;
    }

    .ItForYoufooter {
        box-shadow: 0px -3px 5px #888888;
        background-color: white;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
    }

    
    .imgFooter {
        height: 2vw;
    }

    .ButtondFooter {
        display: flex;
        flex-direction: row;
    }


    @font-face {
        font-family: "local72black";
        src: url(72-Black.ttf);
    }

    @font-face {
        font-family: "local72";
        src: url(72-Regular.ttf);
    }

    @font-face {
        font-family: "local72bold";
        src: url(72-Bold.ttf);
    }

    @font-face {
        font-family: "local72condensed";
        src: url(72-Condensed.ttf);
    }

    @font-face {
        font-family: "local72condensedbold";
        src: url(72-CondensedBold.ttf);
    }
}
