@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(-45deg, #eb602d, #eb602d, #fff);
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 20px;
}
.container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px #eb602d, 0 6px 6px #fff;
  padding: 50px 20px;
  text-align: center;
  max-width: 100%;
  width: 1000px;
  height: 90vh;
}

h3 {
  margin: 0;
  opacity: 0.5;
  letter-spacing: 2px;
}

img {
  width: 90%;
  height: 75vh;
  border: 2px solid #eb602d;
  border-radius: 10px;
}
