#logo{
    position: absolute;
    right: 60%;
}

h1 { 
    background-color: white;
    border: 2px solid black;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black
}

p{
    margin: auto;
    width:50%;
    text-align: center;
}

#resume{
    margin: auto;
    background-color:white;
    size: 7px;
    outline: 2px solid black;
    height:60px;
    width:50%;
    color:black;
    font-size: larger;
    font-weight: bold;
}

#github{
    margin: auto;
    background-color:white;
    size: 5px;
    border-radius: 50px;
    outline: 2px solid black;
    height:50px;
    width:25%;
    color:black;
    font-size: larger;
    font-weight: bold;
}

#results {
    text-align: center;
    background-color: white;
    border: 2px solid black;
    height:250px;
    width:70%;
    top: 400px;
    left: 10%;
    right: 10%;
    color: black;
    overflow: auto;
    padding: 10px; 
}

html {
    text-align: center;
    vertical-align: bottom;
    height: 100%;
    width: 100%;
    /*background-image: url("images/bookstore.jpg");
    background-repeat: no-repeat;
    background-position: center center; */
    background-color: lightblue;
    color: black;
}

#caption 
{
    text-align: center;
    vertical-align: bottom;
}

iframe {
    width:375px;
    height:234px
}
/* Styles for screens smaller than 768px (typical mobile devices) */
@media only screen and (max-width: 768px) {

    /* Adjust the size and position of the results square */
    .results {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: white;
      padding: 20px;
      box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    }
  
    /* Reduce the font size of your results */
    .results p {
      font-size: 0.9rem; /* Adjust as needed */
    }
  
    /* Adjust the padding and margin of your results links */
    .results a {
      display: block;
      padding: 10px 0;
      margin-bottom: 10px;
    }
  
    /* Reduce the font size of your results link text */
    .results a span {
      font-size: 0.8rem; /* Adjust as needed */
    }
  
  }
