body{
    background-color: #fdfdfd;
    font-family: "Radio Canada";
    font-size: 16px;
    margin-left: 28%;
    margin-right: 28%;
    padding: 30px;
}

a{
    color: #000000;
}
.navbar ul {
    margin-left: 75%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    list-style-type: none;
    overflow: hidden;
    flex-wrap: wrap;
   
  }
  
 .navbar li{
    margin-bottom: 10px;
 }

 .navbar li a {
    text-decoration: none; 
    color : #000000;
  }
  
  .navbar li a:hover {
    text-decoration: underline; 
  }

  #pink-text{
    color: #e5a8b7;
    font-weight: bold ;
  }

  #grey-text{
    color: #a9a9a9;
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: normal;
}
  
.content{
  margin-top: 30px;
  margin-bottom: 10px;
  color: #000000;
  text-decoration: none;
  font-weight: normal;
}


.footer img{
  width: 30px;
  height: 30px;
}

.footer{
  margin-left: 0px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: flex-start;
  justify-content: space-evenly;
  width: 25%;
}


@media only screen and (max-width: 768px) {
  body {
      font-size: 0.7rem; /* Adjust font size for smaller screens */
      margin-left: 0%;
      margin-right: 0%;
  }

  .navbar ul {
      margin-left: 70%;
  }

  .footer {
      width: 100%;
  }

  .footer img {
      width: 20px;
      height: auto;
  }
}