/*
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

font-family: "Poppins", sans-serif;

.josefin-sans-<uniquifier> {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

font-family: "Josefin Sans", sans-serif;
*/
html {
    background-color:  #f2f2f2;
}

/* content can be removed 
#content {
    width: 960px;
    margin: auto;
}
*/
h2 {
   font-family: "Josefin Sans", sans-serif; 
}

p {
    font-family: "Poppins", sans-serif;  
    text-align: justify;
}

.story-img {
    float: left;
    width: 200px;
    margin: 10px 10px 0px 0px;
    border: 10px solid #E6006B;
}


header {
    width: 100%;
    background-color: #f2f2f2;
}

.header-content {
    width: 960px;
    background-color: #f2f2f2;
    /*padding: 10px 10px 20px 10px; /* 1st#= top 2nd#= right 3rd#= bottom 4th#= left */
    color: #fff;
    margin: auto;
}

nav {
    width: 100%;
    background-color: #333;
}

.nav-content {
    width: 960px;
    color: #fff;
    margin: auto;
}

/* navbar css starts here! */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  font-family: "Poppins", sans-serif;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #111;
}

.active {
  background-color: #E6006B;
}
/* navbar css ends here! */

.bullet {
    list-style-image: url(images/bullets/bullet.png);
    font-family: "Poppins", sans-serif;
}

main {
    width: 960px;
    background-color:  #f2f2f2;
    margin: auto;
}

.special-text {
    color: #E6006B;
}
.bullet-text {
    text-align: justify;
}

.main-content {
    width: 940px;
    background-color:  #f2f2f2;
    float: left;
    padding: 10px 10px 20px 10px;
}
/* cf-start */
/* contact form css */
.contact-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2 {
    font-weight: 600;
    color: #E6006B;
    font-size: 24px;
    margin-bottom: 5px;
    
}

.contact-left-title hr {
    border: none;
    width: 140px;
    height: 5px;
    background-color: #E6006B;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}

.contact-left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus {
    border: 2px solid #E6006B; 
}

.contact-inputs::placeholder {
    color: #a9a9a9;
}

.contact-left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background-color: #E6006B;
    cursor: pointer;
}

.contact-left button img {
    height: 15px;
}

.contact-right img {
    width: 400px;
}

@media (max-width: 800px) {
    .contact-inputs {
        width: 80vw;
    }
    
    .contact-right {
        display: none;
    }
}
/* contact form css ends */

/* cf-end */
#footer {
    width: 100%;
    background-color: #0d0d0d;
    clear: both;
}

.footer-content {
    width: 960px;
    background-color: #0d0d0d;
    clear: both;
    color: #fff;
    margin: auto;
}

* {
  box-sizing: border-box;
}

/* Create two unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
  height: 300px; /* Should be removed. Only for demonstration */
}

.left {
  width: 65%;
  background-color: #0d0d0d;
}

.right {
  width: 35%;
  background-color: #0d0d0d;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}