@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');
body {
    font-family: Roboto, Arial;
}
p {
    font-family: Roboto, Arial;
    font-size: 20px;
    color: #353535;
}
a {
    font-family: Roboto, Arial;
    font-size: 20px;
    color: #454545;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
h1 {
    font-family: Roboto, Arial;
    font-weight: bold;
    font-size: 60px;
    color: #353535;
}
h2 {
    font-family: Roboto, Arial;
    font-size: 40px;
    color: #353535;
}
h3 {
    font-family: Roboto, Arial;
    font-size: 20px;
    color: red;
}
button {
    padding: 15px 30px;
    border: 0;
    border-radius: 5px;
    font-family: Roboto, Arial;
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
    background-color: #3CAA3C;
    cursor: pointer;
}
input {
    padding: 10px 10px;
    border-radius: 5px;
    font-family: Roboto, Arial;
    font-size: 17px;
    color: #353535;
    border: 2px solid #5D80FF;
    outline: none;
}