* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* header */

header {
    padding: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* body */

body {
    background-image: url("../img/onda-01.png");
    background-size: cover;
    background-color: black;
    background-position: center;
    width: 100%;
    height: 900px;
    backdrop-filter: blur(11px);
}

/* main */

main {
    text-align: center;
    padding: 180px 15px;

    h1{
        color: white;
        font-size: 45px;
        font-family: 'Fira Code', sans-serif;
        font-weight: 700;
    }

    p {
        color: white;
        font-size: 25px;
        padding: 10px;
        font-family: 'Fira Code', sans-serif;
        font-weight: 600;
    }
    
    a {
       color: white;
       margin-top: 20px;
       font-size: 20px;
       font-family: 'Fira Code', sans-serif;
       font-weight: 400;
    }

    a:hover {
        text-decoration: none;
        color: rgb(199, 197, 197);
        transition: .3s;
    }

}



/* fonts */

/* fira-code-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: 'Fira Code';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/fira-code-v27-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-code-600 - 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: 'Fira Code';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/fira-code-v27-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-code-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: 'Fira Code';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/fira-code-v27-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* footer */

footer {
    text-align: center;
    color: white;

    p {
        margin-top: 200px;
        font-size: 15px;
        padding: 10px;
        font-family: 'Fira Code', sans-serif;
        font-weight: 600;
    }
}
