* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid red; */
}

body {
  background-image: url("background.jpg");
  background-repeat: round;
  background-attachment: fixed;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
}

.two-column {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* border: 1px solid green; */
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* border: 1px solid blue; */
}

.card {
  max-width: 500px;

  /* max-height: 300px;
    min-height: 200px; */

  margin: 1rem 0;
  padding: 2rem 0;
  
  backdrop-filter: blur(3px);
}

#main {
  font-family: 'Open Sauce One', sans-serif;
  color: white;
}

#name {
    /* font-size: 1.4rem; */
    font-size: xxx-large;
    font-weight: bold;

    margin-bottom: 1rem;
}

#job {
  font-size: 1.2rem;
  font-size: 5vh;

  margin-bottom: 1rem;
}

#links {
  font-size: 10vh;
  /* border: solid 1px white; */
}

#links a {
  color: white;
  text-decoration: none;
  margin: 1rem;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-family: 'Open Sauce One', sans-serif;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
}
