:root {
  --Very-Dark-Grayish-Blue: hsl(217, 19%, 35%);
  --Desaturated-Dark-Blue: hsl(214, 17%, 51%);
  --Grayish-Blue: hsl(212, 23%, 69%);
  --Light-Grayish-Blue: hsl(210, 46%, 95%);
}

* {
  margin: 0px;
  padding: 0px;
}
body {
  background-color: var(--Light-Grayish-Blue);
}

.main {
  padding-left: 0px;
  margin-left: 0px;
  margin-top: 50px;
  border-radius: 5px 5px 5px 5px;
  background-color: white;
}

.leftMain {
  padding: 0px;
  border-radius: 5px 0 0 5px;
}

.imgL {
  width: 100%;
  height: 100%;
  padding-left: 0px;
  margin-left: 0px;
  border-radius: 5px 0 0 5px;
}

.rightMain {
  border-radius: 0 5px 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 40px;
}

.rmPA {
  display: flex;
}
.rmPA .rmImgH img {
  border-radius: 50%;
  margin-right: 10px;
}
.rmFoot {
  display: flex;
  justify-content: space-between;
}

.share {
  position: relative;
}

#toast {
  width: 225px;
  height: 47px;
  opacity: 0.5;
  display: none;
  background-color: #570d9c;
  border-radius: 10px;
  padding: 5px 24px;
  position: absolute;
  top: -50%;
  left: -50%;
  transform: translate(-35%, -50%);
}
#toast div {
  color: #efefef;
  padding: 5px;
}

#btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
}
#btn:hover {
  background-color: black;
  color: #efefef;
}
.d {
  font-size: 24px;
  color: #efefef;
}

.mobileFooter {
  display: flex;
  justify-content: space-around;
  background-color: #570d9c;
  color: white;
  border-radius: 0px 0px 5px 5px;
  padding: 20px 0px;
  align-items: center;
}
.c {
  padding-right: 20px;
}
.mobilebtn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
}

@media (max-width: 500px) {
  .rmFoot {
    display: none;
  }
  .main {
    margin: 33px;
  }

  .c {
    font-size: small;
  }
  .SH {
    white-space: nowrap;
    overflow: hidden;
  }
}
