body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    
}

@media only screen and (max-width: 768px) {
    /* for mobile phones */
    [class*="container"] {

        width: 90%;
    }

}

@media only screen and (max-width: 768px) {
    /* for mobile phones */
    .content {

        width: 100vw;
        margin-left: calc((100% - 100vw) / 2);
    }

    header h1 {

        width: fit-content;

    }

    header {

        margin-top: -50px;

    }


}

header {
    padding: 20px;
}

header img {
    width: 150px;
    height: auto;
    border-radius: 50%;
    float: left;
    margin-right: 20px;
}

header h1 {
    margin-top: 50px;
}

.bio, .resume, .projects {
    margin-top: 30px;
}

.projects ul {
    list-style-type: none;
    padding: 0;
}

@media only screen and (min-width: 769px) {
    /* for mobile phones */
    .content {

        width: 80%;
        margin-right: auto;
        margin-left: auto;
        margin-top: 5px;
        margin-bottom: 5px;
        display:block;
    }

}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    bottom: 0;
    width: 100%;
}

.site_links {

    color: black;
    text-decoration: none;

}

.site_links:hover {

    color:#777;

}



/* Define the button style */
.project_button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #333; /* Button color */
    border: 2px solid #333; /* Button border color */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    margin-bottom: 10px;
  }
  
  /* Hover effect */
  .project_button:hover {
    background-color: #555; /* Button color on hover */
    border-color: #555; /* Button border color on hover */
  }
  
  /* Focus effect */
  .project_button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3); /* Button focus outline */
  }
  
  /* Active effect */
  .project_button:active {
    background-color: #777; /* Button color when clicked */
    border-color: #777; /* Button border color when clicked */
  }