@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
} 

body {
  background-color: #1d2122;
}

section{
  display: flex;
  justify-content: center;
  align-items: start;
  margin: 150px;
}
/* Custom styles for sections */

section:nth-child(1){
  margin-top: 100px;
}

section .container {
  max-width: 940px;
}

section h1{
  font-size: 55px;
  color: #f9f9f9;
  margin-top: 80px;
  font-weight: 800;
  text-align: center;
}

section h2{
  font-size: 32px;
  text-align: center;
  color: #f9f9f9;
  font-weight: 500;
}

section h3{
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

section p, a{
  color: #f9f9f9;
  font-weight: 400;
  font-size: 14px;
}

.h2Bottom{
  text-align: center;
  margin-bottom: 50px;
}

.checkboxes{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-row-gap: 15px;
}

section .tasks{
  display: flex;
  padding-right: 10px;
  padding-left: 10px;
  grid-row-gap: 10px;
  justify-items:flex-start;
  border-radius: 4px;
  background-color: #f9f9f9;
}

section .tasks .checkbox{
  align-self: center;
  padding-right: 8px;
}

.socials{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.socialLogo {
  height: 35px;
  padding: 5px;
}

.notifications{
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-row-gap: 10px;
}

.notification{
  display: block;
  width: 320px;
  height: auto;
  border-radius: 12px;
  background-color: hsla(0, 0%, 100%, 0.06);
}

.notificationHeader{
  display: flex;
  padding-top: 10px;
  padding-bottom: 3px;
  align-items: center;
}

.notificationImage{
  padding-left: 10px;
}

.notificationLabel{
  padding-left: 7px;
  color: hsla(0, 0%, 97.7%, 0.7);
  font-size: 12px;
  line-height: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.notificationTime{
  padding-right: 10px;
  flex: 1;
  color: hsla(0, 0%, 97.7%, 0.7);
  font-size: 12px;
  text-align: right;
}

.notificationcontent{
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 10px;
}

.logo {
  object-fit: contain;
  width: 100%;
  height: 100px;
}

.companyInfo{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Controls how elements are revealed */

.reveal{
  position: relative;
  opacity: 0;
  transition: all 2s ease;
}

.reveal.active{
  opacity: 1;
}

/* For devices below 800px width */

@media (max-width: 800px){
  section{
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 50px;
    justify-content: center;
  }

  section:nth-child(2){
    margin-top: 80px;
  }

  section:nth-child(3){
    margin-top: 100px;
  }

  section h1{
    font-size: 45px;
  }

  section h2{
    font-size: 30px;
  }
}