*{ margin: 0; padding: 0; box-sizing: border-box; } body{ width: 100%; height: 100vh; background-color:#202124; display: flex; } main{ width: 100%; height: 1440px; padding-top: 100px; } //CONTAINER .container{ width: 90%; margin: 0 auto; text-align: center; padding-bottom: 30px; display: flex; flex-wrap: wrap; justify-content: center; img{ position: flex; } h1{ color: #fff; text-align: center; font-family: 'Roboto', sans-serif; } p{ color: #fff; padding: 10px; font-family: 'Roboto', sans-serif; } h2{ color: #fff; font-family: 'Roboto', sans-serif; padding-bottom: 10px; } } article{ padding-top: 20px; padding-bottom: 20px; } //FIM CONTAINER //CODIGOS FORMULARIO .area-formulario{ font-family: Arial, Helvetica, sans-serif; justify-content: center; h3{ padding: 20px; text-align: center; align-items: center; color: #fff; } } .field{ padding: 10px; margin-bottom: 15px; border: 1px; width: 300px; } .form{ text-align: center; display: flex; flex-direction: column; align-items: center; textarea{ padding: 20px; height: 150px; width: 300px; } label{ color: #fff; } legend{ color: #fff; padding-bottom: 10px; } } //FIM CODIGOS FORMULARIO /*h1{ font-family: 'Montserrat', sans-serif; color: #fff; padding: 50px; border: 5px solid #fff; border-radius: 20px; } */ // Header, navbar e menu header{ width: 100%; padding: 10px 20px; position: fixed; z-index: 999; } nav{ max-width: 99%; margin: 0 auto; height: 8vh; display: flex; align-items: center; justify-content: space-between; a{ color: #fff; text-decoration: none; display: block; padding: 10px 15px; font-family: 'Century Gothic', cursive; text-decoration: none; color: #fff; transition: 0.5s ease; &:hover{ color: #f70000; } } } .menu{ list-style: none; display: flex; align-items: center; li{ margin-left: 10px; a{ display: block; padding: 10px 15px; font-family: 'Century Gothic', cursive; text-decoration: none; color: #fff; transition: 0.5s ease; &:hover{ color: #f70000; } } } } .banner{ background-image: url("banner.png"); position: relative; background-repeat: no-repeat; background-size: cover; width: 100%; height: 500px; text-align: center; h1{ color: #fff; } } //SECTION section{ width: 99%; } //FIM SECTION //PEZINHO DA PAGINA footer{ background-color: #292525; color: #fff; text-align: center; height: 100px; margin-top: 50px; width: 100%; padding-top: 25px; } //FIM PEZINHO DA PAGINA //CSS GRID LAYOUT .grid{ max-width: 1200px; margin: 0 auto; justify-content: center; display: grid; grid-template-areas: "sidenav item item" "sidenav item item"; grid-gap: 60px; } .gridindex{ max-width: 1200px; margin: 0 auto; justify-content: center; display: grid; grid-template-areas: "item" "item" "item"; grid-gap: 60px; } .itemaudio{ grid-area: "item"; audio{ width: 100%; height: 100%; border-radius: 20px; } } .item2{ max-width: 250px; min-width: 250px; height: 300px; border-radius: 40px; grid-area: "item"; img{ width: 100%; height: 100%; border-radius: 20px; } embed{ width: 100%; height: 100%; border-radius: 20px; } } .item{ max-width: 300px; min-width: 250px; height: 300px; border-radius: 40px; grid-area: "item"; img{ width: 100%; height: 100%; border-radius: 20px; } p{ text-align: center; margin-top: 5px; color: #fff; } } sidenav{ max-width: 300px; min-width: 250px; background-color: #333; border-radius: 20px; grid-area: "sidenav"; grid-row: sidenav; font-family: 'Roboto Slab', serif; p{ padding: 2px 2px 2px 2px; text-align: center; margin-top: 5px; color: #fff; } } //FIM CSS GRID //CSS GRID LAYOUT RESPONSIVO @media (max-width: 820px){ .grid{ max-width: 1200px; margin: 0 auto; padding: 0px 20px 0px 20px; display: grid; grid-template-areas: "sidenav item" "sidenav item" "sidenav item" "sidenav item"; grid-gap: 60px; } } @media (max-width: 520px){ .sidenav{ height: 200px; } .grid{ max-width: 1200px; margin: 0 auto; padding: 0px 20px 0px 20px; display: grid; grid-template-areas: "sidenav" "item" "item" "item" "item"; grid-gap: 60px; } } //FIM CSS RESPONSIVO //SOBRE FATEC .sobre{ display: flex; justify-content: center; align-items: center; h2{ font-weight: 500; text-transform: uppercase; margin-left: 25px; color: #fff; } img{ height: 250px; border-radius: 50%; } p{ color: #fff; } } //FIM FATEC //CONTAINER PARA LISTAS .container-list{ width: 99%; margin: 0 auto; text-align: center; padding-bottom: 50px; display: block; flex-wrap: wrap; justify-content: center; h1{ color: #fff; text-align: center; font-family: 'Roboto', sans-serif; } } //FIM CONTAINER //BOTOES .btn{ display: block; text-transform: uppercase; text-decoration: none; width: 15%; font-size: 14px; font-weight: bold; color: #fff; font-family: 'Comfortaa', cursive; margin: 0 auto; padding: 10px 35px; border: 2px solid #20df0e; position: relative; overflow: hidden; body{ justify-content: center; align-items: center; text-align: center; } &::before{ content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; background-color: #5fe36a; z-index: -1; transition: .7s ease; } } .btn1{ &::before{ width: 0; height: 100%; } &:hover{ &::before{ width: 100%; } } } //FIM BOTOES