body{
    background: transparent linear-gradient(156deg, #1B7F79 0%, #747F7F 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
    margin: 0;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh

}

.logotext{
    font: normal normal bold 70px/1px Campaign;
    text-align: center;
    text-decoration: none;
    color: #000000;
}

.header{
    background-color: #ffffff;
    top: 0;
    right: 0;
    left: 0;
}

.socialIcons{
    position: relative;
    justify-self: end;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    padding: 10px;
    gap: 3px;
}

.socialicon{
    width: 40px;
}



#windowBar{
    position: relative;
    width: 80vw;
    padding: 0;
    margin: 0;
    justify-self: center;
    margin-top: 2rem;
}

#windowBar .titlebar {
    width: 80%;
    width: calc(100% - 40px);
    height: 40px;
    text-align: center;
    float: left;
    background: #5C6767;
    display: flex;
    justify-content: center;
    align-items: center;
    font: normal normal normal 20px/1px tondo-signage;
    color: #ffffff;
}

#windowBar .closebutton {
    width: 20%;
    width: calc(40px);
    height: 40px;
    float: left;
    background: #ff0000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#windowBar .contentwindow{
    background-color: #000000;
    color:#ffffff ;
    font: normal normal 200 1em/1.1em input-serif;
    padding: 1.5rem;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.wrapper{
    display: grid;
    align-content: center;
}

.form{
    display: grid;
    align-content: center;
    justify-content: center;
    justify-items: center;
} 

input{
    border-color: blue;
    border-width: 2.5px;
    min-height: 1.5rem;
    min-width: 180px;
    font: normal normal 200 1em/1.1em input-serif;
    max-width: fit-content;

    
}

textarea{
    border-color: blue;
    border-width: 2.5px;
    min-height: 1.5rem;
    max-width: fit-content;
    font: normal normal 200 1em/1.1em input-serif;
    resize: none;
}

input::placeholder{
    border-color: blue;
    min-height: 1.5rem;
    color: blue;
    font: normal normal 200 1em/1.1em input-serif;
}
textarea::placeholder{
    border-color: blue;
    min-height: 1.5rem;
    color: blue;
    font: normal normal 200 1em/1.1em input-serif;
    padding-top: 3px;
}

#message{
    min-height: 6rem;
}

#submit{
    background-color: blue;
    color: white;
}