@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


* {
    margin: 0%;
    padding: auto;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
    color: #0E1319;
    font-size: large;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-color: #0E1319;
}

header img{
    height: 100px;
}

.container {
    margin-top: 100px;
}

button {
    font-size: large;
    width: 150px;
    height: 50px;
    margin: 50px;
    border-radius: 100px;
    color: #002333;
    background-color: #B4BEC9;
    box-shadow: 2px 2px 2px 2px rgba(49, 48, 48, 0.97);
}

button:hover{
    cursor: pointer;
    border-radius: 35px ;
    box-shadow: 0 0 30px 0 #159A9C;
    transform: scale(1.1);
}

button#submit{
    margin: 10px;
    width: 100px;
    height:70px;
}

button#exemplo {
    margin: 10px;
    width: 200px;
    height:70px
}

.caixaBotões {
    display: flex;
    justify-content: center;
    align-items: center;
}

.caixaBotões button {
    font-size: medium;
    width:  200px;
    margin: 20px;
    border-radius: 30px;
}

#lado {
    background-color: #06518eb4;
}

#lado:hover {
    cursor: pointer;
    background-color: #06518e88;
}
