
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}/* Make images easier to work with */
img,
picture {   
  max-width: 100%;
  display: block;
}/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}
.blob {
  width: 187px;
  height: 187px;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(100px);
}
body {
    background: white;
    font-family: 'Montserrat';
    padding-left: 10%;
    padding-right: 10%;
}
.title {
    font-size: 96px;
    font-weight: bold;
}
.subtitle {
    font-size: 32px;
    font-weight: 500;
    padding-top: 15px;
}
.categories, .post-now {
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: bold;
    width: 232px;
    height: 64px;
    cursor: pointer;
    border-radius: 5px;
}
.cta-buttons > a {
    text-decoration: none;
}
.cta-buttons {
    padding-top:35px
}
.categories {
    background: black;
    color: white;
}
.post-now { 
    background: white;
    color: black;
    margin-left: 10px;
    border: 1px solid black;
}
.cta-subtitle {
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 15%;
}
.image {
    width: 521px;
    height: 347px;
}
.about-us, .short-story {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
}
.about-us > .section {
    margin-left: 80px;
}
.short-story > .section {
    margin-left: 80px;
}
.short-story {
    padding-top: 50px;
    margin-bottom: 150px;
}
.about-us-title, .short-story-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 4%;
}
.about-us-subtitle, .short-story-subtitle {
    font-family: 'Montserrat', sans-serif; 
    font-weight: 500;
    font-style: italic;
    font-size: 24px;
}
.why-us {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 20px;
}
.why-us-list > h3 {
  font-size: 24px;
  font-weight: 500;
  padding: 10px;
  padding-top: 10px;
}
.why-us-list {
  padding: 13px;
  width: 100%;
  background: #06060614;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-cta {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.footer-cta > a {
  text-decoration: none;
}
.btn-main { 
  font-family: 'Montserrat';  
  font-size: 20px;
  font-weight: bold;
  width: auto;
  height: 64px;
  cursor: pointer;
  border-radius: 5px;
  background: #FFD700;
  color: black;
  box-shadow: 4px 4px 0px #000; 
  border: 1px solid black;
}
.btn-posto:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background-color: #FFD700;
}
.btn-posto:active {
    transform: translate(2px, 2px); 
    box-shadow: 0px 0px 0px #000;
}
.arrow-down {
  place-self: center;
  height: 40px;
  padding-bottom: 10px;
}
@media (max-width: 768px) { /* Phone */
  .blob {
    display: none;
  }
  body {
    padding-left: 5%;
    padding-right: 5%;
  }
  .title {
    font-size: 36px;
  }
  .subtitle {
    font-size: 26px;
  }
  .categories, .post-now {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: bold;
    width: 159px;
    height: 40px;
    cursor: pointer;
    border-radius: 5px;
  }
  .cta-subtitle {
    font-size: 18px;
  }
  .about-us, .short-story {
    display: inline;
  }
  .about-us > .section, .short-story > .section {
    margin-left: 0;
    padding-bottom: 4%;
  }
  .about-us-title, .short-story-title {
    font-size: 20px;
    margin-bottom: 2%;
  }
  .about-us-subtitle, .short-story-subtitle {
    font-size: 18px;
  }
  .why-us {
    font-size: 34px;
  }
  .why-us-list > h3 {
    font-size: 22px;
  }
  .image {
    height: 50%;
    width: fit-content;
  }
  .short-story > .section {
    margin-bottom: 10%;
  }
}

@media (min-width: 769px) and (max-width: 1476px)  { /* iPad or bigger screens*/
  .blob {
    display: none;
  }
  .title {
    font-size: 86px;
  }
  .about-us, .short-story {
    display: inline;
  }
  .about-us > .section, .short-story > .section {
    margin-left: 0;
  }
  .short-story > .section {
    margin-bottom: 10%;
  }
  .image {
    height: 50%;
    width: fit-content;
  }
}
