html{
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  padding-left: 10%;
  padding-right: 10%;
  background-color: white;
}

a {
  color: #890353;
  text-decoration: none;
  transition: 0.3s;
  width: fit-content;
  display: inline-block;
}

a::after {
  content: '';
  width: 0px;
  height: 1px;
  display: block;
  background: #890353;
  transition: 0.3s;
}

a:hover {
  color: #6e0243;
}

a:hover::after {
  width: 100%;
}

/** HEADER **/

header {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  align-items: center;
}

.headerLinks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/** STATUS **/

.statusOuterDiv {
  padding-top: 100px;
  box-shadow: rgba(33, 35, 38, 0.15) 0px 10px 10px -10px;
}

.statusOuterDiv p {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 2px;
  padding-left: 12px;
}

.statusInnerDiv {
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.statusInnerDiv h1 {
  padding-top: 10px;
  text-transform: uppercase;
  color: #4a4a4a;
  margin: 0;
}

.statusInnerDiv p {
  padding-left: 0;
}


.outlookCalendar {
  width: -moz-available;
  width: -webkit-fill-available;
  height: 180px;
}

.addCalendar {
  margin-top: 10px;
  background: #FFFFFF;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  font-size: 20px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.2s;
}

.addCalendar:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 17px 0px;
}

#copyMessage {
  display: none;
  font-size: 12px;
}

.calendar {
  position: relative;
}

.calendar h1 {
  text-transform: uppercase;
  color: #890353;
}

.calendar .resizeIcon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.calendar .resizeIcon:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 17px 0px;
}


/** ANNOUNCEMENTS **/

.announcementsDiv {
  padding-top: 10px;
}

.announcementsDiv h1 {
  text-transform: uppercase;
  color: #890353;
}

.announcement {
  padding: 10px 30px;
  margin-bottom: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.announcement .date {
  font-size: 13px;
  padding-top: 10px;
}


/** LINKS **/

.linksDiv {
  padding-top: 10px;
  padding-bottom: 50px;
}

.linksDiv h1 {
  text-transform: uppercase;
  color: #890353;
}

.linksDiv a {
  width: fit-content;
  padding-bottom: 5px;
}

.linksDiv p {
  margin: 0;
}

/** SUBSCRIPTION **/

.subscriptionForm h1 {
  text-transform: uppercase;
  color: #890353;
  text-align: center;
}

.subscriptionForm iframe {
  height: 20vh;
  width: 100%;
  border: none;
}