28 lines
435 B
CSS
28 lines
435 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
|
|
|
|
body {
|
|
height: 100vh;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
font-family: Roboto, sans-serif;
|
|
}
|
|
|
|
img {
|
|
width: 600px;
|
|
}
|
|
|
|
button {
|
|
font-family: Roboto, sans-serif;
|
|
border: none;
|
|
border-radius: 8px;
|
|
background: #eee;
|
|
}
|
|
|
|
input {
|
|
border: 1px solid #ddd;
|
|
border-radius: 16px;
|
|
padding: 8px 24px;
|
|
width: 400px;
|
|
margin-bottom: 16px;
|
|
}
|