
.landing{
    width: 100%;
    height: 500px;
    background-image: url(../images/programingLanding.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-attachment: fixed;

}
.landing div{
    margin-left: 80px;
}
.landing div p{
    margin: 30px 0px 30px 0px;
}
.landing div h1{
    font-size: 56px;
}

.packages{
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-evenly;
    width: 80%;
    margin: 10px 0px 40px 0px;
    border-radius: 10px;
    background-color: #302f2e;
    padding: 15px;
    min-width: 800px;
}

.item{
    border-radius: 5px;
    width: 30%;
    margin: 15px;
    background-color: #ffffff;
    align-items: center;
    text-align: center;
}
.item-title{
    
    color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size: x-large;
}
.item-title h2{
    padding: 0px;
    margin: 15px;
}
.item-content{
    margin: 15px;
}
.item-content button{
    margin: 10px;
}
.item-content h3{
    font-weight: normal;
}
.item-content hr{
    border: 1px solid #302f2e;
    width: 80%;
}
.item-content b{
        font-size: xx-large;
}



.progression{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    font-family: 'Poppins';
    width: 95%;
    font-size: xx-large;
    font-style: bold;
    border-radius: 10px;
    margin: 30px 0px 10px 0px;

}
.progression img{
    width: 30%;
}

.webdev{
    display: flex;
    width: 70%;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: baseline;
    padding: 5px;
    background-color: #ff6f00;
    margin: 50px 0px 30px 0px;
    border-radius: 5px;
    
}
.price{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
    width: 50%;
    background-color: #302f2e;
    border-radius: 5px;
    color: white;
    height: 300px;
    justify-content: space-between;
}
.price b{
    font-size: larger;
}
.features{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
    width: 50%;
    background-color: #302f2e;
    border-radius: 5px;
    color: white;
    height: 300px;
    justify-content: space-between;
}
.features ul{
    list-style: none;
    font-size: large;
}

@media screen and (max-width: 1500px) {
    .packages{
        flex-direction: column;
        align-items: center;
    }
    .item{
        width: 60%;
    }
    .webdev{
        flex-direction: column;
        align-items: center;
    }
    .price{
        width: 90%;
    }
    .features{
        width: 90%;
    }
}



.question-mark {
position: relative;
margin: 0px 5px 0px 5px;
text-align: center;
height: 32px;
width: 32px;
}
.question-mark:hover .tooltip {
    bottom: 60px;
    opacity: 1;
}

.tooltip {
background: #fff7ed;
border-radius: 10px;
box-sizing: border-box;
margin-left: -100px;
opacity: 0;
padding: 20px;
position: absolute;
bottom: 50px; left: 50%;
transition: all 0.15s linear;
width: 200px;
color: black;
}

.tooltip:after {
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #fff7ed;
    content: "";
    height: 0; 
    margin-left: -16px;
    position: absolute;
    bottom: -16px; left: 50%;
    width: 0; 
}
.tooltip p{
    font-size: 11px;
    margin: 5px;
}
.b{
    text-decoration: bold;
}

.websites{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin: 50px;
}
.websites img{
    height: auto;
    width: 20%;
    border: #302f2e solid 2px;
}
