body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5vh auto;
    gap: 1vw;
    padding: 0;
    overflow: clip;
}

.resume_container {
    width: 50vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

iframe {
    width: 100%;
    height: 85vh; /* Ensures the iframe takes most of the viewport height */
    border: none; /* Removes any border from the iframe */
}

.download_button {
    display: inline-block;
    margin-bottom: 20px; /* Adds some space between the button and the iframe */
    padding: 10px 20px;
    background-color: #007BFF; /* Button color */
    color: #ffffff; /* Text color */
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    font-weight: bold;
    text-align: center;
}
.download_button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}



@media (max-width: 768px) {
    .resume_container{
        width: 150vw;
    }
    iframe{
        transform: scale(0.7);
        height: 100vh;
        margin-top: -15vh;
    }
    
}
