
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #111111;
 
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;

}

img {
  width: 200px;
  object-fit: cover;
}

p {
  font-size: 1.5rem;
  margin: 1rem 0;
}