:root {
  --green: #79C000;
  --black: #231F20;
  --white: #ffffff;
  --gray: #D9D9DA;
}

body {
  font-family: Roboto, Arial, sans-serif;
  font-weight: normal;
  overflow-y: scroll;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

ol {
  padding-right: 20px;
}

li {
  margin-top: 5px;
  margin-bottom: 5px;
}


/* #region Landing */

#landing {
  width: 100%;
  height: 50%;
}

#landing #panel {
  width: calc(100% - 10vw);
  height: calc(80% - 10vw);
  background-color: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}

#landing #panel img {
  width: 50%;
}

#landing #panel p {
  color: var(--black);
  text-align: center;
}

/* #endregion */



/* #region How to use */

#howToUse {
  width: calc(100% - 10vw);
  height: calc(100% - 10vw);
  padding: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#howToUse #phone {
  width: 50vw;
  margin-top: -12vh;
}

#howToUse h1 {
  text-align: center;
}

/* #endregion */



/* #region GitHub */

#github {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#github > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - 10vw);
  height: 100%;
  padding: 0 5vw;
  background-color: var(--green);
  text-align: center;
}

/* #endregion */



/* #region Featured on */

#featuredOn {
  padding: 5vw;
  padding-bottom: 15vw;
  text-align: center;
}

#featuredOn #mentions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  overflow-x: scroll;
  gap: 5vw;
}

.mention {
  width: 35%;
}

.mention img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* #endregion */



/* #region Footer */

#footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer > div{
  width: calc(100% - 10vw);
  background-color: var(--green);
  color: var(--black);
  padding: 5vw;
  text-align: center;
}

/* #endregion */



/* #region General use classes */

.button {
  text-decoration: none;
  padding: 4vw 6vw;
  color: var(--white);
  background-color: var(--black);
  border-radius: 999px;
}

.collapsible {
  background-color: var(--green);
  color: var(--black);
  cursor: pointer;
  padding: 4vw 6vw;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  border-radius: 999px;
  font-size: 1.1em;
}

.active, .collapsible:hover {
  background-color: var(--green);
}

.content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out, width 0.2s ease-out;
  background-color: white;
  border: none;
  margin-bottom: 10px;
  border-radius: 20px;
}

.content-note {
  padding: 0 20px;
  text-align: justify;
}

/* #endregion */




/* #region Desktop Layout */

@media only screen and (min-width: 768px) {

    
  /* #region Landing */

  #landing #panel {
    width: calc(100% - 4vw);
    background-color: var(--green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2vw;
    padding-bottom: 0;
  }

  #landing #panel img {
    width: 20%;
  }

  #landing #panel p {
    color: var(--black);
    text-align: center;
    font-size: larger;
  }

  /* #endregion */



  /* #region How to use */

  #howToUse {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #howToUse #phone {
    width: 20vw;
  }

  #howToUse h1 {
    text-align: center;
  }

  /* #endregion */



  /* #region GitHub */

  #github {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  #github > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 10vw);
    height: 100%;
    padding: 0 5vw;
    background-color: var(--green);
    text-align: center;
  }

  /* #endregion */



  /* #region Featured on */

  #featuredOn {
    padding: 2vw;
    padding-bottom: 5vw;
    text-align: center;
  }

  #featuredOn #mentions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    align-items: center;
    justify-content: center;
    gap: 5vw;
  }

  .mention {
    width: 10%;
  }
  
  .mention img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* #endregion */



  /* #region Footer */

  #footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #footer > div{
    width: calc(100% - 4vw);
    background-color: var(--green);
    color: var(--black);
    padding: 2vw;
    text-align: center;
  }

  /* #endregion */



  /* #region General use classes */

  .button {
    text-decoration: none;
    padding: 2vw 3vw;
    color: var(--white);
    background-color: var(--black);
    border-radius: 999px;
  }

  .collapsible {
    background-color: var(--green);
    color: var(--black);
    cursor: pointer;
    padding: 2vw 3vw;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    border-radius: 999px;
    font-size: 1.1em;
  }

  .active, .collapsible:hover {
    background-color: var(--green);
  }

  .content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out, width 0.2s ease-out;
    background-color: white;
    border: none;
    margin-bottom: 10px;
    border-radius: 20px;
  }

  /* #endregion */


}

/* #endregion */