.fullscreen {
  height: 100vh;
  background: grey;
  display: flex;
  align-items: center;
  padding-left: 10vw;
  font-size: 8vw;
  font-family: Kanit, sans-serif;
}
body {
  margin: 0;
}
.dark {
  background: #333;
  color: #ccc;
}

.light {
  background: #ccc;
}

.pink {
  background: #fcf;
}

.message {
  visibility: hidden;
  height: 80px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  font-weight: bold;
  font-family: sans-serif;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.message img {
  position: absolute;
}
.linkwrap {
  position: absolute;
  width: 250px;
  overflow: hidden;
  height: 80px;
  display: flex;
  align-items: center;
  left: 65px;
  top: 10px;
}
a {
  width: 120px;
  color: #f60;
  background: black;
  padding: 16px 16px 16px 30px;
  border-radius: 0 20px 20px 0;
}
