body {
    margin: 0;
    padding: 0;
    height: 100vh;    
    font-family: "Rubik", sans-serif;
    color: black;
}

main {      
  width: 100%;
  margin: auto;
}

/*nav bar styling*/
nav a {
  margin: 0 1rem;
  color: black;
  text-decoration: none;
}
nav a:hover {
  text-decoration: underline;
}

.pink {
    background-color: rgb(245,170,185);
}

.blue {
    background-color: rgb(91, 207, 250);
}

/*Font*/

.nunito-text {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

  
.rubik-text {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

  /*trans flag border styling*/

.trans-flag {
    background-repeat: repeat;
    background: repeat url("./images/trans-flag.png");
    height: 20px;
    background-size: contain;    
    clip-path: polygon(0% 0%, 100% 0%, calc(100% - 20px) 100%, 20px 100%);
}

.horizontal-trans-flag-container {
    display: flex;
    position: relative;
}

.horizontal-trans-flag-top {
    background-repeat: repeat;
    background: repeat url("./images/trans-flag.png");
    height: 20px;
    background-size: contain;    
    clip-path: polygon(0% 0%, 100% 0%, calc(100% - 20px) 100%, 20px 100%);
    width: 100%;
    z-index: 2;
}

.horizontal-trans-flag-bottom {
    background-repeat: repeat;
    background: repeat url("./images/trans-flag.png");
    height: 20px;
    background-size: contain;    
    clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 100%, 0% 100%);
    width: 100%;
    z-index: 2;
}

.vertical-trans-flag-top {
    position: absolute;
    width: 20px;
    height: 100%;
    background: url("./images/trans-flag-left.png");
    background-size: cover;
}

.vertical-trans-flag-top-right {    
    right: 0;
}

.vertical-trans-flag-container {
    width: 20px;    
    align-self: stretch;
}

.vertical-trans-flag-left {
    width: 20px;
    background: repeat url("./images/trans-flag-left.png");
    background-size: contain;
    align-self: stretch;
}

.flag-container {
    display: flex;
    justify-content: space-between;
    height: calc(100% - 40px);
}

.flag-container-main {
    display: flex;
    justify-content: space-between;
}

/*flag border styling ENDS*/

.main-content-container {
    width: calc(100% - 40px);    
    overflow-y: scroll;
}

header, footer {
    background: rgb(245,170,185);
  }

  /*text*/
  header {
    text-align: center;
  }

  h1, h2 {
    margin: 0;
    font-weight: normal;
  }

  .text-section {
    padding: 2rem;
  }

  /*media queries for responsive presentation on mobiles*/
  @media screen and (max-width: 768px) {
    .text-section {
      padding: 0.5rem;
    }

    h2 {
      font-size: 16px;
    }

    h1 {
      font-size: 18px;
    }

    h1, h2 {
      font-weight: bold;
    }

  }

  /*Netlify form styling*/
  label {
    display: flex;
    flex-direction: column;
  }

  input, textarea {
    margin-top: 1rem;
  }

  .hidden-form-field {
    visibility: hidden;
  }
