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

* {
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  background-color: #fff;
  width: 100vw;
}

.projects {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background-color: greenyellow;
  padding-left: 20px;
}

.info {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  bottom: 0;
  height: 100%;
  border-right: 5px #000 solid;
  padding-left: 20px;
}

.projects a {
  background-color: darkslateblue;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 20px;
  height: 50px;
  margin: 10px;
  text-decoration: none;
}

.projects a:hover {
  background-color: #fff;
  color: darkslateblue;
}
