@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

  background: #4B79A1;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #283E51, #4B79A1);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #283E51, #4B79A1); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  

}

* {
  box-sizing: border-box;
  font-family: 'Source Code Pro', monospace;
}

.header {

}

.title {
  font-weight: bold;
  font-size: 3rem;
  color: white;
}

.row {
  width: 100%; height: 100%;
  display: flex; flex-direction: row;
}

.column {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
}

.column-center-hv {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
}

.column-center-v {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
}

.link {
  margin-bottom: 2.5rem; 
  font-size: 1.5rem;
  color: white;
}

.link:hover {
  background-color: yellow;
  color: black;
}