html,
body {
  margin: 0px;
  padding: 0px;
  height: 100vh;
}

html {
  background: url("background.jpg");
  background-size: 15%;
  font-family: "Open Sans";
}

body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 15px;
}

.transition {
  transition: background 0.5s ease, color 0.5s ease;
}

a {
  font-style: normal;
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  outline: none;
}

a:hover {
  background: white;
}

a:visited {
  color: black;
}

.title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 20px;
}

img {
  height: 25px;
  padding-right: 5px;
}

.yellow {
  background: yellow;
  border-style: none;
  border-width: 4px;
  border-radius: 35px;
}

.padding {
  padding: 10px;
}

.hover:hover {
  color: white;
  text-shadow: 0px 0px 5px black;
}
