
@import url('https://fonts.googleapis.com/css?family=Work+Sans:300,600');
:root{
    --background: rgb(29, 29, 29);
    --background-lighter: rgb(79, 79, 79);
    --hightlight: rgb(84, 230, 92);
}

html{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen","Ubuntu", "Cantarell", "Fira Sans","Droid Sans", "Helvetica Neue", sans-serif;
      scroll-behavior: smooth;
  }
body{
    height: 100vh;
    background: #CE5937;
    background: -moz-linear-gradient(top, #CE5937 0%, #C59237 100%);
    background: -webkit-linear-gradient(top, #CE5937 0%, #C59237 100%);
    background: linear-gradient(to bottom, #CE5937 0%, #C59237 100%);
}

.box {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .Title-Card{
    
    background-color: rgba(61, 61, 61, 0.7);
    margin: 30vh 5vw 0 5vw;
    padding:5vh 10vh 5vh 10vh;
    position: relative;
    border-radius: 2vw;
    z-index: 1;
}

.box h1{
    font-size: 4vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}



.Title-Card::before{
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    inset: 0;
    transform: rotate(-8deg);
    border-radius: 2vw;
    z-index: -1;
}
   input{
    margin-top: 5.5vh;
    margin-right: 1vh;
    padding: 2vh 4vh 2vh 4vh;
    border:0 none;
    cursor:pointer;
    outline: none;
    float: left;
    background-color: var(--hightlight);
    border-radius: 1vh;
    float: right;
    
  }

