.resumeContainer{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    margin: 3% 3%;
    /* width:fit-content; */
}
.resumeTitle{
    text-align: center;
    font-size: 1.5rem;
}
.flyerTitle{
    text-align: center;
    font-size: 1.5rem;
    transform: translate(-20px,0px);
}
.resumeParagraph{
    font-size: 0.9em;
    text-align: justify;
}
.tab {
    overflow: hidden;
    margin: 0 15px 25px 15px;
    display: grid;
    transform: translate(0,40px);
}
.tab button {
    background-color: inherit;
    border-bottom: 2px solid #e91e63;
    color: #fff;
    background-color: #000;
    outline: none;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
    font-size: 0.9em;
}
.tab button:hover {
    color: #000;
    background-color: #fff;
}
.tab button.active {
    color: #fff;
    background-color: #e91e63;
    border-bottom: 2px solid #000;
}
.tabcontent {
    display: none;
    border: none;
}
/*Slider*/
.resumeImages{
    /* display: inline-flex; */
    height: fit-content;
}
#slider{
    height: 100vh;
    transform: translate(80px,40px)scale(1,1);
}
#slider > li{
    position: absolute;
}
.newsImg{
    list-style: none;
}
@media screen and (max-width:1300px) and (min-width:951px){
    .flyerTitle{
    text-align: center;
    font-size: 1.5rem;
    transform: translate(35px,0px);
}
}
@media screen and (max-width:950px) and (min-width:901px){
    #slider{
    transform: translate(30px,5px)scale(1.0, 0.9);
    background-color: #000;
    width:fit-content;
    }
    .flyerTitle{
    text-align: center;
    font-size: 1.5rem;
    transform: translate(25px,0px);
}
}
@media screen and (max-width:900px) {
    .resumeContainer{
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }
    .resumePage{
        display: block;
        width: auto;
        margin: 5% 7%;
        padding: 0;
        border: none;
    }
    .flyerTitle{
        display: none;
    }
    .resumeTitle{
        font-size: 1em;
        margin-bottom: 10px;
        text-align: center;
        color: #e91e63;
    }
    .tab{
        display: grid;
        grid-template-columns: 1fr;
        margin: 0;
        padding: 0;
        transform: translate(-20px,0px);
        
    }
    .tab button {
        border: none;
        border-bottom: 2px solid #e91e63;
        background-color: #000;
        color: #fff;
        transition: 0.3s;
        display: grid;
        margin: 0;
        padding: 10px;
    }
    .tab button:hover {
        color: #000;
        background-color: #fff;
    }
    .tab button.active {
        color: #fff;
        background-color: #e91e63;
        border-bottom: solid 2px #000;
    }
    .resumeParagraph{
        font-size: 0.7em;
        margin: 0;
    }
    .resumeImages{
        display: none;
    }
}