html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
#bg-img{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    width: 100vw;
    background-image: url('resume-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#front-div{
    
    padding: 10px;
    background-color: #2a78ab;
    border:whitesmoke 2px solid;
    border-radius: 5px;
}
h1,h2{
    color:#e0effa;
}
button{
    background-color: #e0effa;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    border-style: none;
    border-radius: 5px;
}
a{
    color: #2a78ab;
    text-decoration: none;
}