@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Muli", sans-serif;

  /* display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center; */
  /* overflow: hidden; */
  margin: 0;
  background-color: #3c485e;
}

a {
  text-decoration: none;
  color: white;
}

.welcome {
  background: url(https://images.unsplash.com/photo-1437751059337-ea72d4f73fcf?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1942&q=80)
    left center/cover no-repeat;
  color: white;
  height: 400px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  overflow: hidden;
}

.content {
  margin: 0 auto;
  /* height: 100vh; */
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  justify-content: start;
}

.content .project {
  font-family: "Roboto", sans-serif;
  background-color: #66809c;
  margin: 10px 20px;
  height: 150px;
  width: 200px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  padding: 50px;
  transition: transform 0.3s ease;
}

.content .project:hover {
  transform: scale(1.03);
}

.content .project:focus {
  outline: none;
}
