*{
    box-sizing: border-box;
    font-family: "Roboto Mono", monospace;
    padding: 0;
    margin: 0;
}

body {
    background: rgb(2,0,36);
    background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 14%, rgba(0,212,255,1) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}



.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

}

#titleText{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 100px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    margin-bottom: 40px;
    padding-left: 25px;
}

.valueInput{
    display: flex;
    flex-direction: column;
    margin: 15px;
    padding-bottom: 60px;
}

.coinSelect{
    margin-top: 15px;
    width: 60px;
    height: 25px;
    border-radius: 18px;
    text-align: center;

}

.valuePrint{
    margin-top: 10px;
    background: white;
    width: 300px;
    height: 40px;
    border-radius: 20px;
    border: none;
    align-items: center;
    padding: 10px;
}

.footer{
    position: absolute;
    bottom: 1px;
    color: white;
    left: 2px;
}
button{
    width: 300px;
    height: 40px;
    border-radius: 20px;
    border: none;
    margin-top: 10px;

}
#prints{
    display: flex;
    flex-direction: column;
}

.pageHome{
    position: absolute;
    top: 20px;
    right: 100px;
    color: white;
    font-size: 20px;
    border-bottom: white solid 2px;
    text-decoration: none;
}

.pageHome:hover{
    color: #2a61a9;
}
  