@charset "UTF-8"; 

@font-face {
    font-family: 'Second';
    src: url('../fonts/KGSecondChancesSketch.ttf') format('trueType');
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    color: #ffffff;
    background: #375F53 url('../images/fundo.jpg') center center no-repeat fixed;
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    padding: 50px 5px;
}

h1 { 
    font: normal normal 2.2em 'Second', cursive;
    text-align: center;
}

#main {
    max-width: 550px;
    padding: 30px;
    border: 3px solid #ffffff;
    border-radius: 10px;
    margin: 70px auto 50px;
}

form {
    font-size: 22px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.values {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.inps {
    color: #ffffff;
    background-color: transparent;
    font: normal bold 20px 'Segoe UI';
    text-align: center;
    width: 100px;
    height: 50px;
    border: 3px solid #ffffff;
    border-radius: 10px;
}

.radio {
    width: 17px;
    height: 17px;
}

footer, footer a {
    color: #ffffff;
    font-size: 20px;
    text-align: center;
}

footer a {
    font-weight: bold;
}