color scheme{
color: #799FCB;
color: #EEF1E6;
color: #F9665E;
color: #AFC7D0;
}

:root {
  --dark-blue: #799FCB;
  --off-white:  #EEF1E6;
  --rose:  #F9665E;
  --blush-pink: #F7D1D1;     /* Blush Pink */
  --warm-charcoal: #4A4A4A;  /* Warm Charcoal */
  --dark-lavender: #734f96;
}


body {
  background-color: var(--blush-pink);
  font-family: sans-serif;
  color: var(--warm-charcoal);
  
}

h1 {
  color: var(--rose);
  font-weight: bold;
  font-size: 30px;
}

h2{
  color: var(--dark-lavender);
  text-align: center;
  font-size: 50px;
}

h3{
  color: var(--dark-blue);
}

h4 {
  color: var(--dark-lavender);
  font-size: 20px;
}

p{
  color: var(--warm-charcoal);
}


.header-container {
  position: sticky;
  top: 0;
  background-color: var(--blush-pink);
  
  padding: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  
}

.header-title {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}


.content {
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.body {
  background-color: var(--off-white);
  width: 90%;
  border-radius: 12px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 90px;
  padding-bottom: 90px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  line-height: 1.6px;
  
}

.home-right {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  flex-wrap: wrap;
}

.photos {
  display: flex;
  flex-direction: row;
}

table {
  width: 100%;
  border-collapse: collapse;  
}

tr {
  display: flex;
  flex-wrap: wrap;  
  gap: 20px; 
}

td {
  flex: 1 1 calc(50% - 20px); 
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  background-color: var(--off-white);
  border-radius: 12px;
  text-align: center;
}


.button, a:link, a:visited{
  background-color:  var(--rose);
  border-radius: 12px; /*this makes it round*/
  color: #EEF1E6;
  text-align: center;
  text-decoration: none;
  padding: 0.5em;
  margin: 5px;
  width: 60px;
  max-height: 2.5em;
}
a:hover, a.active {
  color: #799FCB;
  border-radius: 5em;
}

.footer-container{
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

