
@media screen and (min-width: 1200px) {
    
    .grid {
        display: grid;
        grid-template-areas:        "topbar topbar topbar"
                                    "left main right"
                                    "footer footer footer";
        grid-template-columns:      220px 1fr 220px;
        grid-template-rows:         100px
                                    1fr
                                    70px;
        min-height: 100vh;
        justify-content: center;
    }
    
        .grid_topbar {
            position: sticky;
            top: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            grid-area: topbar;
            background-color: black;   
        }
    
        .grid_left {
            position: sticky;
            height: calc(100vh - 100px);
            top: 100px;
            grid-area: left;
            padding-top: 60px;
        }

        .grid_main {
            grid-area: main;
            margin: 0;
            padding-top: 25px;
            padding-right: 10%;
            padding-bottom: 25px;
            padding-left: 10%;
        }
        
        .grid_right {
            position: sticky;
            height: calc(100vh - 100px);
            top: 100px;
            bottom: 70px;
            grid-area: right;
            align-items: flex-start;
            padding-top: 60px;
        }

        .top_btn {
            border-radius: 100px 0px 100px 0px;
            width: auto;
            height: 55px;
            min-width: 150px;
            max-width: 180px;
            margin: 10px;
            padding-right: 20px;
            padding-left: 20px;
            transition: 0.4s;
        }

        .main_content {
            padding-top: 0;
            padding-right: 10%;
            padding-bottom: 0;
            padding-left: 10%;
        }

        .form_outline {
            min-width: 800px;
            padding-top: 40px;
            padding-right: 100px;
            padding-bottom: 40px;
            padding-left: 100px;
        }
    
        .full_img {
            width: auto;
            height: auto;
            max-width: 1000px;
            max-height: 100%;
            margin-bottom: 25px;
        }
    
        .text_input_block {
            width: 100%;
            min-width: 700px;
            height: 50px;
            margin-top: 10px;
            margin-bottom: 10px;
            padding-right: 16px;
            padding-left: 16px;
            background-color: lightgrey;
            border-radius: 10px;
            font-size: 17px;
            color: black;
            cursor: text;
            transition: 0.5s;
        }

        .xxwide {
                width: 580px;
            }
        .izfield {
            width: 586px;
            height: 120px;
            border-radius: 10px;
            margin-top: 10px;
            margin-bottom: 10px;
            padding: 16px;
            background-color: lightgrey;
            font-size: 17px;
            transition: 0.4s;
        }
        .izfield:hover	{
            width: 586px;
            height: 130px;
        }100%
        .izfield:focus	{
            width: 100%;
            height: 260px;
            max-width: 960px;
        }
            .img_tile {
                width: auto;
                max-width: 100%;
                height: auto;
            }
            .text_input_block {
                width: 100%;
                min-width: 300px;
                height: 40px;
                margin-top: 10px;
                margin-bottom: 10px;
                padding-right: 16px;
                padding-left: 16px;
                background-color: lightgrey;
                border-radius: 10px;
                font-size: 17px;
                color: black;
                cursor: text;
                transition: 0.5s;
            }   
            .social {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                margin-top: 60px;
                margin-bottom: 20px;
            }
                .social_icon {
                    width: 50px;
                    height: 50px;
                    margin: 20px;
                }   
                .social_icon:hover {
                    box-shadow: 0px 0px 12px 8px red;
                }   
                .social_icon_wide {
                    width: 70px;
                    height: 50px;
                    margin: 20px;
                }
                .social_icon_wide:hover {
                    box-shadow: 0px 0px 12px 8px red;
                }
                
        .fcent {
            font-size: 16px;
            }
    
}

