header {
    background-color: var(--main-pink);
}

.button-wrapper {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    text-decoration:none
}

.entry-level, .senior-level {
    width:300px;
    height:300px;
    background-color:var(--main-pink);
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    padding:20px;
    margin:40px;
    text-align:center;
    font-family: poppins;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s ease-in-out;

}

.entry-level {
    background-image:url(../assets/sm-background2.png);
    background-size: cover;
}

.senior-level {
    background-image:url(../assets/sm-background.png);
    background-size: cover;
}

.entry-level:hover, .senior-level:hover {
    /* color:white; */
    transform:scale(1.1);
    cursor:pointer;
}

.container a, .container a:visited {
    color:var(--main-dark);
    text-decoration: none;
}


@media only screen and (max-width: 500px) {

    .entry-level, .senior-level {
        width:300px;
        height:300px;
    }
    
}


.tab2 li {
  font-family: montserrat;
  
}

.tab2 h5 {
  color:white;
  margin-top:15px;
  margin-bottom:15px;
  text-align: center;
}

.tab2 a, .tab2 a:visited {
    color: #C2969D;
    font-weight:500;
    transition: .3 ease-in-out;
}
.tab2 a:hover {
    color:white;
}