/* montserrat-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/montserrat-v26-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }


body {
    font-family: Montserrat, sans-serif;
    background-color: #3a3837;
    color: #e7e3df;
}


#mainContainer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    max-width: 100vw;
}

#contentContainer {
    grid-row: 1 / -1;
    grid-column: 1 / -1;
    z-index: 1;
    place-self: center;
    width: 100%;
    max-width: 100vw;
}


#blobContainer {
    position: fixed;
    height: 100vh;
    width: 100vw;
    filter: url("#blur-contrast-composite");
}


.glass {
    background: hsla(190, 5%, 48%, 0.15);
    border: #696765 solid 1px;
    backdrop-filter: blur(3rem);
    box-shadow: 0 0.5rem 1rem 0 hsla(230 33% 7%/ 0.5);
}

.glass-image {
    backdrop-filter: blur(3rem);
    opacity: 0.15;
}

.card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem 0 hsla(230 33% 7%/ 0.5);
    padding: 1rem;
}

/* Styling for the canvas element */
canvas {
    height: 100vh;
    width: 100vw;
}

/* Styling for the main heading */
h1 {
    font-size: 8rem;
    margin: 0.5rem 0;
    text-shadow: 0 0.25rem 0.5rem hsla(230 33% 7%/ 0.5);
}

/* Styling for paragraphs */
p {
    line-height: 1.5rem;
    margin-block-end: 1.25rem;
}

/* Styling for the tagline */
.tagline {
    font-size: 2rem;
    line-height: calc(2rem + 0.5rem);
    margin: 0 0 2rem;
}

/* Flexbox styling */
.flex-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flex-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

/* Centering element */
.center {
    width: 75vw;
    margin-inline: auto;
    margin-block-end: 5rem;
}

@media screen and (max-width:700px) {
    .flex-row {
        flex-direction: column-reverse;
    }

    .flex-col {
        flex-direction: row;
        flex-wrap: wrap;
    }

}

/* Styling for icons */
.icons {
    grid-column: 1;
    grid-row: span 1;

    width: 72px;
    height: 72px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styling for the article */
article {
    grid-column: 2 / span 11;
    grid-row: 1 / span 3;
}

.logo {
    background-color: white;
    max-width:500px;
    border-radius: 5px;
    padding-top: 1.5rem;
    padding-bottom: 1.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    transform: rotate(-10deg) translateY(-50%);
    margin: 0 auto;
}
