body{
    background-color: #050818;

}
.header {
    background-color: #eee;
    padding: 7px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;

}        

nav {
    display: flex;

}
.nav-img{
    padding: 20px;
    margin: 20px;
    width: 30%;
    
}
.text-nav{
    padding: 20px;
    display: flex;
    /* box-sizing:content-box; */
}
a{
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: x-large;
    margin: 10px;
    padding-top: 20px;
    width: 70px;
    transition-duration: 2s;

}

a:hover{
    width: 100px;
    color: violet;
    /* transform:rotate(45deg); */
    transform: scale(2,2);
}


.pro {
    padding: 10px 25% 30px;
    color: aliceblue;
    font-size: 35px;
    font-style: italic;
    background-attachment: fixed;
}

.section {
    margin: 1;
    padding: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.left {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 20px;
    transition: 0.5s ease;
    text-align: center;
    color: #ffff;
}

.left .left-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.left .left-img img {
    max-width: 100%;
    height: 100%;
    opacity: 0.2;
    transition: 0.5s ease;
}

.left:hover .left-img img {
    opacity: 1;
    transform: scale(1.2);
}

.left .left-img::before {
    position: absolute;
    content: "";
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    z-index: -1;
}

.left .cont {
    position: absolute;
    bottom: -10%;
    transition: 0.5s ease;
    width: 100%;
    text-align: center;
    border-radius: 20px;
    opacity: 0;
    background-color: #05081891;
}

.left:hover .cont {
    opacity: 1;
}

.left.cont {
    margin: 0;
    font-weight: bold;
    color: #0066ff;
    letter-spacing: 5px;
}

#footer {
    vertical-align: middle;
    padding: 30px;
    color: #ffff;
}

.footer {
    font-size: 30px;
}

.p {
    font-size: 20px;
}

.img-footer {
    text-align: center;
}