* {
  box-sizing: border-box;

}

body {
	background-color: #c8b2d1;
	font-family: "Varela Round", sans-serif;
	font-size:25px;
}

h2 {
	color:#efe6f2;
	
}


.left {
  background-color: white;
  padding: 20px;
  float: left;
  width: 20%; /* The width is 20%, by default */
}

div left{
	width:70%;
}

.main {
  background-color: #a28cb8;
  padding: 20px;
  float: left;
  width: 45%; /* The width is 60%, by default */
}

.right {
  background-color: #b586af;
  padding: 20px;
  float: left;
  width: 30%; /* The width is 20%, by default */
}

/* Use a media query to add a break point at 800px: */
@media screen and (max-width: 800px) {
  .left, .main, .right {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
  }
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 150px;
  background-color: #ede4ec;
}

li a {
  display: block;
  color: #54304f;
  padding: 8px 16px;
  text-decoration: none;
  
}

/* Change the link color on hover */
li a:hover {
  background-color: #593c55;
  color: white;
}



div {
        border-radius: 25px; /* <---------- use this to round the opposite corners */
      }
	  
