* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

:root {
    --text-color: #1985A1;
    --background-color: #aab9cf;
    --link-color: #000000;
}

html {
    scroll-behavior: smooth;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid var(--text-color);
    background-color: var(--text-color);
    padding: 10px 10px;
}

.img1 {
    width: 50px;
    margin-top: px;
}

nav .left a {
    color: var(--link-color);
    font-size: 40px;
    align-items: center;
}

nav .right a:last-child {
    margin: 0 10px;
}

a {
    text-decoration: none;
    color: var(--link-color);
    font-size: 20px;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--background-color);
}

.conainer{
    margin: 100px auto;
    width: 75%;
}

.image{
    max-width: 350px;
    float: right;
    border-radius: 10px;
    border: 2px solid var(--background-color);
    margin-right: 20px;
    margin-left: 30px;
}

.text h2 {
    font-size: 50px;
    padding: 5px 70px;  
}

.text p {
    font-size: 20px;
    padding: 50px 70px;
    font-weight: 300;
    font-style: italic;
}

.last {
    font-family:'Times New Roman', Times, serif ;
    font-size: 30px;
}

/* footer */
footer{
    background-color: #111;
}
.footerContainer{
    width: 100%;
    padding: 70px 30px 20px ;
}
.socialIcons{
    display: flex;
    justify-content: center;
}
.socialIcons a{
    text-decoration: none;
    padding:  10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.socialIcons a i{
    font-size: 2em;
    color: black;
    opacity: 0,9;
}
/* Hover affect on social media icon */
.socialIcons a:hover{
    background-color: #111;
    transition: 0.5s;
}
.socialIcons a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
}
.footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}
.footerNav ul li a{
    color:white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;

}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerBottom{
    background-color: #000;
    padding: 20px;
    text-align: center;
}
.footerBottom p{
    color: white;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}
@media (max-width: 700px){
    .footerNav ul{
        flex-direction: column;
    } 
    .footerNav ul li{
        width:100%;
        text-align: center;
        margin: 10px;
    }
    .socialIcons a{
        padding: 8px;
        margin: 4px;
    }
}