/* Header class details */
.header {
    height: 200px;
	}

/* paragraph specifications */
p  {
    text-align: center;
    font-size: 20px;
    color: rgb(95,19,18);
    font-family: "Klinci Slab Book";
 }
p1 {
    font-size: 20px;
    color: rgb(85,50,55);
    font-family: "Klinic Slab Book";
    text-align: center;
    
}

p2 {
    text-align: center;
    font-size: 20px;
    color: rgb(11,148,70);
    font-family: "Klinic Slab Book";
    
}
   
p3 {
    text-align: center;
    font-size: 24px;
    font-family: "Klinic Slab Book";
    color: rgb(207,28,68);

}




/* Heading class specifications */
h1  {
    text-align: center;
    text-decoration: underline;
    font-size: 80px;
    font-family: "Klinic Slab Book";
    color: rgb(207, 28, 68);
} 


h2 {
    text-align: center;
    font-size: 35px;
    font-family: "Klinic Slab Book";
    color: rgb(207, 28, 68);
    
}

h3 {
    
    text-align: center;
    font-size: 35px;
    font-family: "Klinic Slab Book";
    color: rgb(11,148,70);
    font-weight: bold;
    text-decoration: underline;

}

h4 {
    text-align: center;
    font-size: 25px;
    font-family: "Klinic Slab Book";
    color: rgb(11,148,70);

}

h5 {
    
    text-align: center;
    font-size: 25px;
    font-family: "Klinic Slab Book";
    color: rgb(85,50,55);
    font-weight: bold;
        }

/* image specifications */

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin-left: auto;
    margin-right: auto;

}


/* navigation bar and menu drop down specifications */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(85,50,55);
    text-align: center;
    
}

li {
    float: center;
    display: inline-block;
   
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: "Klinic Slab Book";
    font-size: 18px;
}

li a:hover {
    background-color: rgb(207, 28, 68);
}
    
label{
    font-family: "Klinic Slab Book";
}


li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: rgb(207,28,68);
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(85,50,55);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-family: "Klinic Slab Book";
}

.dropdown-content a:hover {background-color: rgb(207,28,68)}

.dropdown:hover .dropdown-content {
    display: block;
}    



/* Footer Specifications */
footer {
    display: block;
    background-color: rgb(85,50,55);
    font-family: "Klinic Slab Book";
    text-align: center;
    color: white;
    font-size: 14px;
    padding:10px 10px;
    margin-top: 10px;
}


/* column specifications */
.column1 {
    float: left;
    width: 50%;
    
}

.column2 {
    float:left;
    width: 33.33%;
  
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    font-family: "Klinic Slab Book";
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: "Klinic Slab Book";
}

input[type=submit]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    
}


/* Block of color seperator */
.square{
    height: 15px;
    background-color: rgb(85,50,55);
    color: rgb(85,50,55);
    padding-top: 10px;
    padding-bottom: 5px;
    margin-top: 20px;
}

/* Banner and centered text specifications */
.container1 {
    position: relative;
    object-fit: cover;

}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 160px;
    font-family: "Klinic Slab Book";
    color: rgb(207, 28, 68);
    text-shadow: 5px 5px white;

}