* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  height: 100vh;
  display: flex;
  background: #000;
  align-items: center;
  justify-content: center;
}

.container {
  width: 1207px;
  height: 703px;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('./mac.png');
}

input {
  width: 205px;
  height: 21px;
  position: absolute;
  top: 79px;
  left: 420px;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 12px;
  color: #dadada;
  border-radius: 5px;
  font-weight: lighter;
  background-color: #3e3e40;
}

input:focus {
  outline: none;
  box-shadow: none;
}

.google {
  position: absolute;
  top: 79px;
  left: 631px;
  width: 52px;
  height: 21px;
  border-radius: 5px;
  background-color: #3e3e40;
  background-image: url('./google.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px 13px;
  cursor: pointer;
}

.baidu {
  position: absolute;
  top: 79px;
  left: 690px;
  width: 52px;
  height: 21px;
  border-radius: 5px;
  background-color: #3e3e40;
  background-image: url('./baidu.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
  cursor: pointer;
}

.row0,
.row1,
.row2 {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  color: #dadada;
  font-weight: lighter;
  text-transform: uppercase;
}

.row0 {
  top: 170.8px;
  left: 254px;
}

.row1 {
  top: 230px;
  left: 269px;
  margin-top: -0.3px;
}

.row2 {
  top: 289px;
  left: 300px;
  margin-top: -0.3px;
}

.kbd {
  height: 53.3px;
  width: 54.4px;
  cursor: pointer;
  margin: 3px 3.2px;
  line-height: 50px;
  user-select: none;
  text-align: center;
  border-radius: 6px;
  background: gray;
  background: #1a1c20;
  animation: breathe 2s ease-in-out infinite;
}
.copyright {
  position: fixed;
	bottom: 30px;
  color: gray;
  font-size: 11px;
}
a {
  color: gray;
}

@keyframes breathe {
  0% {
    color: #efefef;
  }

  50% {
    color: rgb(150, 150, 150);
  }

  100% {
    color: #efefef;
  }
}
