/* Style goal: I want it to look like a food blog/post card mix*/
* {
  box-sizing: border-box;
}

body {
  background-color: #eee7d7;
  font-family: 'Courier New', monospace;
}

img {
  max-width: 100px;
}

a:link,
a:visited,
a:hover,
a:active  {
  text-decoration: none;
  color: black;
}

.review {
  position: relative; 
  background-color: transparent; 
  width: 70%;
  padding-bottom: 30px; 
  margin: 30px; 
  border-bottom: 2px dotted black;
}

.restuarant {
  text-decoration: underline; 
}

.sidebar {
  width: 20%;
  border-radius: 8px;
  position: fixed;
  padding-right: 10px;
  padding-left: 10px;
  
  top: 90px;
  right: 30px;
  bottom: 30px;
  
  display: flex;
  flex-direction:column; 
  text-align: right;
}

.sidebar a, 
.sidebar button {
  border: 2px solid red;
  border-radius: 8px;
  padding : 10px;
  background-color: transparent;
} 

.sidebar a:hover, 
.sidebar button:hover {
  background-color: rgba(255, 0, 0, 0.5);
}

.stamp {
  position: absolute;
  right: 0px; 
  top:0px; 
}

.tab {
  display: none;
}

/* for pop up*/
.flex-column {
  display: flex;
  flex-direction: column;
  
}



