@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap');

:root{
    --cor-primaria:#0a1024;
    --cor-secundaria: #0984E3;
}

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: var(--cor-primaria);
    font-family: 'Montserrat', sans-serif;
    background-image: url('../img/4884273.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

   
}

.main {
    height: 100vh;
    display: flex;
    align-items: center;
}

.container{
    width: 95%;
    margin: 0 auto;
}

h1, p{
    color: #fff;
    text-align: center;
    font-size: 2em;
    font-weight: 300;
}

.ip{
    color: #fff;
    font-size: 6em;
    text-align: center;
   
    margin-bottom: 30px;
    font-weight: 800;
}



/* CSS */
.button {
  background: #0984E3;
  border-radius: 999px;
  box-shadow: #0984E3 0 10px 20px -10px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-family: Inter,Helvetica,"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Noto Color Emoji","Segoe UI Symbol","Android Emoji",EmojiSymbols,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans",sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  padding: 8px 18px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  word-break: break-word;
  border: 0;
}

.center{
    text-align: center;
}



@media only screen and (max-width: 600px) {
    body {
      background-color: var(--cor-secundaria);
    }

    .ip{
        font-size: 2em;
       

    }

    h1, p{
        
    }
  }
