@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #d9d9d9;
  display: flex;
  justify-content:space-around;
  padding: 10px;
}

a{
  text-decoration: none;
  color: #22011c;
  font-size: large;
}

.suites {
  width: 500px;
  height: 800px;
  align-items: center;
  justify-content: center;
  margin: 20px 30px;
}

.suites-images {
  width: 90%;
  margin: 20px 0px;
  transition: .5s;
}
.suites-images:hover{
  transform: scale(1.1);
  background-color: #22011c;
}

.suites-title{
  color: #22011c;
  font-weight: 600;
}

.suites-stars {
  color: #22011c;
  margin-bottom: 10px;
}

.suites-stars-gray {
  color: aliceblue;
}

.suites-facilities-icons {
  font-size: 20px;
  margin: 10px;
  color: #22011c;
}

.suites-description {
  margin: 30px 0;
  color: #22011c ;
  font-weight: 700;
  text-align: justify;
  line-height: 25px;
  padding: 10px;
}

.suites-book {
  text-decoration: none;
  color: #d9d9d9;
  background-color: #22011c;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #22011c;
  border-radius: 30px;
  padding: 15px;
  letter-spacing: 2px;
  transition: .5s;
}

.suites-book:hover {
  background-color: #d9d9d9;
  color: #22011c;
}