@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,300&display=swap');

*{
    margin: 0;
    padding:0;
}

body{
    font-family: 'Roboto', sans-serif;
    background-color: black;
}

h1.capa{
  font-weight: 300;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
  color: aquamarine;
}

.wrapper{
margin:0 auto;
 width: 80%;
 height:auto;
 display: flex;
 justify-content: center;
 align-items: center;
 height: 800px;
 max-width: 500px;
}

main{
    width: 100%;
    height: auto;
}

.mainlogo{
    width: 100%;
    height: auto;
    float: left;
}
.mainbutton,
.maintitle{
    display:flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
    float: left;
}

button{
    width: 70%;
    height: 55px;
    border-radius: 15px;
    color:aquamarine;   
    cursor: pointer; 
    background-image: url('../images/fblue.png');
}



