/* Styles for screens wider than 600px */
* {
    box-sizing: border-box;
  }
  
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 5px;
}

h1 {
    font-size: 36px;
    margin-top: 0;
}

h3 {
    font-size: 16px;
    margin-top: 0;
}

.bio {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
  }

.links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

a {
    font-size: 20px;
    color: #333;
    text-decoration: none;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

a:hover {
    background-color: #ddd;
}

/* Styles for screens narrower than 600px (e.g., smartphones) */
@media only screen and (max-width: 600px) {

    .container {
        padding: 10px;
    }

    h1 {
        font-size: 24px;
    }

    .bio {
        font-size: 16px;
      }

    .links {
        flex-direction: column;
        justify-content: center;
    }

    a {
        font-size: 16px;
        margin-bottom: 20px;
        width: 100%;
        box-shadow: none;
    }

    a:hover {
        box-shadow: none;
    }

}
