/*? Template*/

    .TemplateDiv {
    background-color: rgba(1, 128, 181);
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    height: 83px;
    z-index: 100;
    }

    .TemplateButton {
    background-color: rgba(255, 145, 76);
    border-color: white;
    box-shadow: 3px 3px 20px 0px rgba(0,0,0,0.75);
    border-style: solid;
    border-radius: 8px;
    padding: 0px 40px;
    margin: 8px 8px;
    cursor: pointer;
    position: absolute;
    color: white;
    font-size: 50px;
    font-family: 'Libre Franklin', sans-serif;
    font-style: bold;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    } 

    .TemplateButton:hover {
    background-color: rgb(255, 121, 39);
    border-color: white;
    border-style: solid;
    border-radius: 8px;
    padding: 0px 40px;
    margin: 8px 8px;
    cursor: pointer;
    position: absolute;
    color: white;
    font-size: 50px;
    font-family: 'Libre Franklin', sans-serif;
    text-align: center;
    text-decoration: none;
    display: inline-block;    
    } 

    .TemplateButton:active {
    background-color: rgb(255, 98, 0);
    border-color: white;
    border-style: solid;
    border-radius: 8px;
    padding: 0px 40px;
    margin: 8px 8px;
    cursor: pointer;
    position: absolute;
    color: white;
    font-size: 50px;
    font-family: 'Libre Franklin', sans-serif;
    text-align: center;
    text-decoration: none;
    display: inline-block;    
    }

/*? Main Site*/

    .MainSiteDiv {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 10px;
        margin-top: 80px;
        height: 500px;
    }

    /*TODO Introduction*/

        .IntroductionHeaderDiv {
            background-color: rgb(217, 238, 247);
            text-align: center;
            color: rgb(255, 98, 0);
            border-radius: 6px;
            font-size: 20px;
            font-family: 'Libre Franklin', sans-serif;
            font-style: bold;
            font-weight: 500;
        }

        .IntroductionDescriptionDiv {
            background-color: rgb(217, 238, 247);
            text-align: center;
            border-radius: 6px;
            font-size: 20px;
            font-family: 'Libre Franklin', sans-serif;
            min-height: 150px;
        }

        .IntroductionFotoImage {
            float: left;
            position: relative;
            z-index: 1;
            border-radius: 50%;
            height: 140px;
            margin: 5px;
        }

        .IntroductionText {
    position: relative;
    z-index: 2;
    border-radius: 6px;
    font-size: 17px;
    font-family: 'Libre Franklin', sans-serif;
    font-style: bold;
    font-weight: 400;
    line-height: 1.4;
        }

    /*TODO Links*/

        .LinksHeaderDiv {
    background-color: rgb(217, 238, 247);
    text-align: center;
    color: rgb(255, 98, 0);
    border-radius: 6px;
    font-size: 20px;
    font-family: 'Libre Franklin', sans-serif;
    font-style: bold;
    font-weight: 500;
    margin-bottom: 17px;
        }

        .LinksDescriptionDiv {
            background-color: rgb(217, 238, 247);
            text-align: center;
            color: rgb(255, 98, 0);
            border-radius: 6px;
            font-size: 20px;
            font-family: 'Libre Franklin', sans-serif;
            font-style: bold;
            font-weight: 500;
            min-height: 150px;
        }

    /*TODO Contact*/

        .ContactHeaderDiv {
            background-color: rgb(217, 238, 247);
            text-align: center;
            color: rgb(255, 98, 0);
            border-radius: 6px;
            font-size: 20px;
            font-family: 'Libre Franklin', sans-serif;
            font-style: bold;
            font-weight: 500;
            margin-bottom: 17px;
        }

        .ContactDescriptionDiv {
            background-color: rgb(217, 238, 247);
            text-align: center;
            color: rgb(255, 98, 0);
            border-radius: 6px;
            font-size: 20px;
            font-family: 'Libre Franklin', sans-serif;
            font-style: bold;
            font-weight: 500;
            min-height: 150px;
        }

/*? Telephone Style*/

    @media (max-width: 1100px) {

        .MainSiteDiv {
            grid-template-columns: 1fr;
        }


        .TemplateButton {
            margin: 8px 100px;
            font-size: 60px;
        }

        .TemplateButton:hover {
            margin: 8px 100px;
            font-size: 60px;
            
        }

        .TemplateDiv {
            height: 100px;
        }


        .IntroductionHeaderDiv {
            height: 60px;
            align-items: center;
            align-content: center;
            font-weight: 600;
            font-size: 30px;
        }
        
        .IntroductionTextDiv {
            font-size: 18px;

        }

        .IntroductionDescriptionDiv {
            margin-bottom: 17px;
        }


        .LinksHeaderDiv {
            align-items: center;
            align-content: center;
            font-size: 30px;
            font-weight: 600;
            height: 60px;
        }

        .LinksDescriptionDiv {
            margin-bottom: 17px;
        }


        .ContactHeaderDiv {
            height: 60px;
            align-items: center;
            align-content: center;
            font-weight: 600;
            font-size: 30px;
        }

        .ContactDescriptionDiv {
            margin-bottom: 17px;
        }
    }    
