*,
*::before,
*::after
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}

html,body
{
    height: 100%;
    color: black;
    margin: 0;
    padding: 0;
    background: #67befc;
    background: linear-gradient(135deg,#67befc,#61ffc0);
    background-attachment: fixed;
    /* background: linear-gradient(135deg,#8052ec,#61ffc0); */
    /* background: #98C9EB; */
    /* background: linear-gradient(135deg, #98C9EB, #459DD3); */
}

#header
{
    display: block;
    width: 100%;
    height: 60px;
    border-bottom: 2px solid black;
    position: relative;
    padding: 0;
}

h1
{
    color: rgb(255,215,0);
    padding: 10px;
    font-style: italic;
    text-shadow: 3px 3px black;
    /* background: linear-gradient(135deg, #98C9EB, #459DD3); */
}

#socialLinks
{
    position: absolute;
    right: 30px;
    top: 10px;  
}

#socialLinks img
{
    background-color: white;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 50%;
}

a
{
    text-decoration: none;
}

#navBar
{
    float: left;
    width: 200px;
    height: 100%;
}

#navBar a, #navBar a:visited
{
    width: 150px;
    height: 30px;
    margin: 10px;
    font-size: 15px;
    color: black;
    display: block;
    border: 2px solid black;
    border-radius: 20px;
    text-align: center;
    align-items: center;
    transition: 1s;
    background: wheat;
}

#navBar a:hover
{
    transition: 1s;
    background-color: #61ffc0;
}

#navBar li
{
    list-style: none;
}

#navBar ul
{
    padding: 0;
}

a.active
{
    background-color: #00ff99 !important;
}

#conent
{
    width: calc(100% - 250px);
    height: 100%;
    float: left;
    padding: 30px;
    border-left: 2px solid black;
}

#title h2
{
    color: gold;
    font-style: italic;
    text-align: center;
    padding: 2px;
    margin: 0px;
    text-shadow: 2px 2px black;
}

#title h3
{
    color:black;
    padding: 2px;
    margin: 0px;
    /* text-shadow: 2px 2px black; */
}

#home_box h3
{
    color: gold;
    padding: 2px;
    margin: 0px;
    text-shadow: 2px 2px black;
}

#footer
{
    clear: both;
    width: 100%;
    height: 30px;
    padding-top: 10px;
    padding-bottom: 50px;
    border-top: 2px solid black;
    text-align: center;
}

#home_box
{
    width: 65%;
    display: block;
    text-align: center;
    /* background-color: antiquewhite; */
    align-items: center;
    margin: auto;
}

.pic
{
    display: inline-block;
    margin: 5px;
}

.pic img
{
    width: 150px;
    height: 200px;
    border-radius: 25px;
    border: 1px solid black;
}

.pic p
{
    margin: 0;
    color: gold;
    text-shadow: 2px 2px black;
}

.picMap img
{
    width: 500px;
    height: 350px;
    border-radius: 20px;
    border: 1px solid black;
}

.picMap p
{
    margin: 0;
    color: gold;
    text-shadow: 2px 2px black;
}

.videocontainer
{
    display: block;
    text-align: center;
}

.video
{
    width: 470px;
    height: 320px;
    overflow: hidden;
    border: 3px solid black;
    border-radius: 10px;
    margin: 20px;
    display: inline-block;
}

.blocks
{
    width: 100%;
    margin: 10px;
    padding: 10px;
    border-radius: 20px;
    border: 2px solid black;
    position: relative;
}

.left img
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.blocks img
{
    width: 300px;
    height: 250px;
    border-radius: 30px;
    /* border: 2px solid black; */
}

.left p
{
    margin-left: 320px;
}

.right img
{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.right p
{
    margin-right: 320px;
}

.container
{
    padding: 20px;
}

input[type=text],input[type=email],textarea, select
{
    width: 100%;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 20px;
    resize: none;
}

input[type=submit]
{
    transition: 1s;
    background-color: green;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

input[type=submit]:hover
{
    transition: 1s;
    color: black;
    background-color: lime;
}

input[type=reset]
{
    transition: 1s;
    background-color: #aa0404;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

input[type=reset]:hover
{
    transition: 1s;
    background-color: red;
}

textarea
{
    height: 350px;
}