.center {
    display: flex;
    flex-direction: row;
    justify-content: center;
}


.button {
    background: orange;
}

.buttons>input {
    margin: .5em;
    border-radius: 5px;


}


.m_flex-form {
    display: flex;
    flex-direction: row;
}

.m_flex-form>label {
    width: 10em;
    flex-grow: 0;
    text-align: right;
    padding-right: .5em;
    color: black;
}

.m_flex-form>input {
    flex-grow: 1;
}

.m_flex-form>textarea {
    flex-grow: 1;
}

#formcontainer {
    background-color: lightgray;
    /*width: 800px;*/
    /*margin: 10px auto;*/
    margin: .5em;
    padding: .5em;
    border: 2px solid black;
    border-radius: 15px;
}

/* Set the size of the div element that contains the map */
#map {
    height: 400px;
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
}

.card>h5{
    text-align: center;
    color:orange;
}


/* container with background image */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0px;
}

/* set max width and add a background*/
.wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-image: url('../images/ptg4.png');
    background-blend-mode: lighten;
    background-size: 30px;
    background-position: center;
    background-size: repeat;
    border-radius: 0px;
}

/* header using background image */
.header {
    /* background-image: url('../images/ptg_banner2.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 300px; */
    max-height: 300px;
    /* background-color: orange; */
    /* font-size: 40px;
    color: white; */
    display: flex;
    flex-direction: row;
    /* column-gap: 50px; */

    /* use for flexbox */
}

/* set row column flex style */
.row {
    display: flex;
    justify-content: space-around;

}

.headcolumnlogo {
    display: flex;
    width: 25%;
    background-color: orange;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "logo1", monospace;
    justify-content: space-around;
    font-size: 60px;
}

.headcolumnbanner {

    width: 75%;
    color: black;
    text-transform: uppercase;
    font-weight: bolder;
    font-family: "logo1", monospace;
    background-image: url('../images/ptg_banner2.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 300px;
    text-indent: 30px;

    margin: auto;
    padding-bottom: 0px;
}

.imgsm{
    max-width: 200px;
}

.imgmd{
    max-width: 400px;
}

.imglg{
    max-width: 600px;
}


.headcolumnlogo>h1 {
    font-weight: bolder;
    font-family: "logo1", monospace;
    margin: auto;
    font-size: 120px;

}

.headcolumnbanner>h2 {
    font-size: 55PX;
    text-indent: 25px;
    padding-top: 120px;
    margin: 0;

}

.headcolumnbanner>h3 {
    font-size: 30px;
    text-indent: 190px;
    font-style: italic;
    padding-top: 0px;
    margin: 0;
    font-weight: bolder;
}

.headcolumnbanner>h5 {
    font-size: 35px;
    text-indent: 225px;
    padding-top: 0px;
    margin: 0;
    font-weight: bolder;
    font-family: "logo2", monospace;
    text-transform: capitalize;
    font-style: italic;
}

/* set column flex width */
.column1 {
    flex: 1;
    padding: 20px;  

}

.column2 {
    flex: 2;
    padding: 20px; 

}

.column3 {
    flex: 3;
    padding: 20px; 
}

/* responsive for smaller screen size */
@media screen and (max-width: 768px) {

    .columns,
    .column1,
    .column2,
    .column3,
    .row {
        flex-direction: column;
        flex-wrap: wrap;
        flex: 50%;
        max-width: 50%;
    }

    .column1 {
        order: 1;

    }

    .column2 {
        order: 2;
    }

    .column3 {
        order: 3;
    }

    footer {
        flex-direction: column;
        flex-wrap: wrap;
    }

}


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 576px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}

/* NAV bar styling */
.nav {
    background-color: darkgray;
    display: flex;
    align-items: center;
    padding: 30px 0;
    justify-content: space-around;
    /* flex-wrap: wrap; */
    border-style: solid;
    border-color: black;
}


/* footer styling */
.footer {
    background-color: darkgray;
    text-align: center;
    align-items: center;
    padding: 30px 0;
    justify-content: center;
    border-style: solid;
    color: black;
    font-weight: bolder;
    margin: 0;
    /* border-color: black; */
}

footer {
    /* //  todo */
    display: flex;
    background-color: rgb(244, 243, 234);
    color: white;
    justify-content: space-around;
    align-content: center;
    padding: 20px 0;
}


.imageborders {
    padding: 5px;
    margin: 5px;
    border-style: solid;
    border-width: 1px;
}

/*  */
/* pretty frames to make stuff pop on the background*/
.frame {
    background-color: rgba(255, 255, 255, 0.80);
    border-radius: 0px;
    padding: 10px;
    margin-top: 0;
}

li {
    margin-left: 15px;
    padding-left: 5px;
    margin-bottom: 10px;

}

img {
    padding: 5px;
}

@font-face {
    font-family: 'logo1';
    src: URL('Orbitron-Black.ttf');
}

@font-face {
    font-family: 'logo2';
    src: URL('AlexBrush-Regular.ttf');
}

/* don't use float!! */
.floatright {
            float: right;
    }

    .floatleft {
            float: left;
    } 
        
    .center {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    } 

/*  */

.shadow {
    box-shadow: 10px 10px 5px rgb(8, 18, 22);
    padding: 20px;
    margin: 20px;
}