* {
  margin: 0;
  padding: 0;
  font-family: monospace;
  box-sizing: border-box;
}
body {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e7ffcf;
}
.box {
  height: 12rem;
  position: relative;
  width: 36rem;
  border-radius: 14px;
  background-color: white;
  padding-left: 20px;
  padding-top: 20px;
  box-shadow: 14px 14px 0px 0px #22aa00;
}
.box .img {
  position: absolute;
  left: 31.5rem;
  top: 1rem;
  height: 3rem;
  width: 3rem;
}
.box .noti {
  position: absolute;
  left: 1.5rem;
  top: 5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.box .url {
  position: absolute;
  left: 5rem;
  top: 5.5rem;
  font-size: 14px;
}
.box .btns {
  display: flex;
  flex-direction: row;
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  gap: 10px;
}
.box .btns button {
  height: 3rem;
  border: none;
  outline: none;
  border-radius: 5px;
  width: 5rem;
}
.box .btns #btn1 {
  color: #bc3315;
  border: #bc3315 1px solid;
}
.box .btns #btn2 {
  border: #68bc15 1px solid;
  color: #68bc15;
}
