
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 20px;
    background-color: #242424;
    /* color: #fff; */
}

.container {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #ED1C24;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    /* border-bottom: #e8491d 3px solid; */
}

header h1 {
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    font-size: 24px;
}

main {
    padding: 20px;
}

.bio {
    text-align: center;
    margin-bottom: 20px;
}

.bio .description {
    /* font-size: 1rem; */
    font-weight: bold;
}

.bio img {
    /* border-radius: 50%; */
    width: 150px;
    height: 200px;
}

.bio h2 {
    margin: 10px 0;
    font-size: 22px;
}

.bio p {
    font-size: 16px;
    /* color: #666; */
}

.links {
    text-align: center;
    /* display: flex; */
    /* flex-direction: column; */
}

.links .button {
    display: block;
    /* width: 50%; */
    max-width: 400px;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background: #6F6E73;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 10px 10px rgba(0,0,0,.5);
    font-family: "Anton SC", sans-serif;
    border: 1px solid rgba(0,0,0,.5);
}

.links .button:hover {
    background: #2f2f30;
}
/* 
@media only screen and (max-width: 600px) {
    body {
      background-color: lightblue;
    }
  } */