.right_align {
    position: relative;
    left: 100%;
    transform: translatex(-100%);
}

.box {
    display: flex;
    flex-flow: column;
    height: 100vh;
}

.box .header {
    flex: 0 1 auto;
}

.box .content {
    flex: 1 1 auto;
}

.box .footer {
    flex: 0 1 100px;
}

.half-background {
    background: linear-gradient(to right, #5F767D 50%, #ffffff 50%);
    background-position: calc(50% - 100px);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    transition: background-position 0.5s;
}

.animation {
    background-position: 0px;
}

.content-card {
    height: 500px;
    width: 800px;
    position: relative;
    left: 50%;
    transform: translateX(-50%) translateY(calc(50vh - 250px));
    background: linear-gradient(to right, #ffffff 50%, #8AA2A9 50%);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.image {
    height: 500px;
    width: 400px;
    text-align: center;
}

.profile-pic {
    width: 220px;
    height: 220px;
    border-radius: 110px;
    position: relative;
    top: 50px;
}

.bar {
    width: 75px;
    height: 2px;
    background-color: black;
    z-index: 100;
    position: relative;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.name {
    position: relative;
    top: 80px;
}

.intro {
    width: 400px;
    position: relative;
    top: 50%;
    transform: translateY(-37%);
}

.footer_block {
    color: black;
    padding: 33px 20px 33px 20px;
}

.text {
    text-align: center;
    font-size: 13px;
    margin: 0;
}

iframe {
    width: 100%;
    height: 100%;
    margin: 0;
}

.resume {
    display: block;
    min-height: 100vh;
}

.main_title {
    padding: 80px 0 30px 0;
    margin-left: auto;
    margin-right: auto;
    width: 700px;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
}

.resume>.title {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0px 50px 0;
}

.resume>.title>h3 {
    margin-top: 5px;
    font-weight: bold;
}

.resume>.title>a>button {
    height: 100%;
    border-radius: 50px;
    border-style: none;
    background-color: #0050FF;
    color: white;
    padding: 0px 20px 0 20px;
}

.resume>.card {
    background-color: #8AA2A9;
    border: none;
    height: 400px;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: row;
}

.resume>.card>.heading {
    width: 350px;
    height: 400px;
    padding: 140px 30px 140px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.resume>.card>.descrption {
    width: 350px;
    height: 400px;
    padding: 140px 30px 140px 30px;
    text-align: center;
}

.skillset {
    padding: 75px;
    width: 700px;
}

.skillset>ul>li {
    display: inline-block;
    padding-right: 20px;
}

.skillset>ul>li:before {
    content: '\00a0\2022\00a0\00a0';
    color: rgba(0, 0, 0, 1);
    font-size: 20px;
}