.resume-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.resume-container {
    width: 70%;
    height: 100%;
    margin: 0 auto;
}

.resume-container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.resume-svg {
    width: 35px;
    stroke: white;
    fill: white;
}

.resume-button {
    background-color: rgba(57, 116, 255, 1);
    border: none;
    text-decoration: none;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 85px;
    cursor: pointer;
}

.resume-button:after {
    content: "";
    background: rgba(57, 116, 255, 0.75);
    width: 120px;
    height: 120px;
    position: absolute;
    z-index: -1;
    border-radius: 130px;
    animation: fadeIn .9s infinite alternate;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
}