.container {
    text-align: center;
    border-radius: 15px;
}

.resume-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
}

input[type="file"] {
    display: none;
  }
  
.upload-container {
    margin-top: 40px;
    justify-content: center;
    align-items: center;
}
  
.upload-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #BBD0F8;
    color: black;
    font-family: "avenir-black";
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 5px;
} 

.upload-button:hover {
    background-color: #aabfe6;
    transition: 0.1s;
}
  
.file-status {
    text-align: center;
    margin-left: 20px;
    margin: 10px 0px;
    margin-top: 15px;
}

.readfile-button {
    cursor: pointer;
}

.readfile-button:hover {
    text-decoration: underline;
}