/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #D1E0CD;
  color: black;
  font-family: "Sofia ProLight", helvetica;
  font-size: 15px;
  text-align: center;
  margin: 10px;
  padding: 40px;
  
}

a:link {
  color: #564941;
  
}

a:visited {
  color: #564941;
  
}

a:hover {
  color: #000000;
  
}

/* box for image */

.boxed {
  background-color: #ffffff;
  color: #726258;
  padding: 5px; 
  width: 230px;
  height: 230px;
  text-align: center;
  
}

/* box for about 1 */

.boxed-2 {
  background-color: #ffffff;
  color: #726258;
  padding: 5px; 
  width: 110px;
  height: 110px;
  text-align: center;
  
}

/* box for welcome message */

.boxed-3 {
  background-color: #ffffff;
  color: #726258;
  padding: 10px;
  margin: 0px;
  width: 150px;
  height: 20px;
  text-align: center;
  
}

/* box for about 2 */

.boxed-4 {
  background-color: #ffffff;
  color: #726258;
  padding: 5px; 
  width: 110px;
  height: 110px;
  text-align: center;
  
}

/* box for identity */

.boxed-5 {
  background-color: #ffffff;
  color: #726258;
  padding: 15px; 
  width: 210px;
  height: 180px;
  text-align: justify;
  
}

.boxed-6 {
  background-color: #ffffff;
  color: #726258;
  padding: 5px; 
  width: 160px;
  height: 30px;
  text-align: center;
  
}

























/*dropdown v2 */

.dropbtn {
    background-color: #FFFFFF;
    color: #726258;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 60px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #726258;
    padding: 10px  10px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

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

.dropdown:hover .dropbtn {
    background-color: #f9f9f9;
}



































a.hoverbubble {
position: relative;
text-decoration: none;
}

a.hoverbubble span {display: none;
}

a.hoverbubble:hover span {
display: block;
position: absolute;
padding: .5em;
content: attr(title);
text-align: center;
width: auto;
height: auto;
white-space: nowrap;
top: -40px;
background: #564941;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
color: #fff;
font-size: 0.86em;
font-family: Arial, Helvetica, sans-serif;
}

a.hoverbubble:hover span:after {
position: absolute;
display: block;
content: "";
border-color: #564941 transparent transparent transparent;
border-style: solid;
border-width: 10px;
height: 0;
width: 0;
position: absolute;
bottom: -20px;
left: 1em;
}