:root {
    --main-color:#2196F3;
}

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

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}
nav ul li a{
    text-decoration: none;
    color: #000;
    
}





.landing {
    max-width: 800px;
    margin: 150px auto 0;
}

.landing .info {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.landing .right {
    width: 450px;
}
.landing .info h1 {
    font-size: 50px;
}
.landing .info p {
    margin: 20px 0;
    color: #777;
}
.landing img {
    width: 25px;
}
.landing .icons {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
}
.landing .left img {
    border-radius: 200px 100px 200px 100px;
    width: 250px;
    height: 200px;
    border: 1px solid #000;
}
.landing .tech {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.landing .tech img {
    width: 30px;
}




/* Start About */
.about {
    display: flex;
    max-width: 800px;
    justify-content: space-between;
    gap: 30px;
    margin: 250px auto;
}
.about .info {
    max-width: 400px;
}
.about .image {
    max-width: 300px;
}
.about img {
    width: 100%;
    border-radius: 18px;
}
.about h3 {
    color: var(--main-color);
}
.about h2 {
    margin: 15px 0;
}

/* End About */
/* Start Portfolio */

.portfolio {
    
}
.portfolio h3 
{
    margin-bottom: 10px;
    color: var(--main-color);
}

.projects {
    margin: 50px 0 100px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.projects .project {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.projects .project .info h2 {
    margin-bottom: 20px;
}
.projects .project .info {
    width: 400px;
    text-align: center;
}
.projects .project .image {
    max-width: 350px;
}
.projects .project .image img {
    width: 100%;
    border: 1px solid #ddd;
}
.projects .project .info img {
    width: 30px;
}
.projects .project .info .tech {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}
.projects .project .info .links {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.projects .project .info .links a{
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    background-color: #eee;
    padding: 8px;

}
.reverse {
    flex-direction: row-reverse;
}
/* End Portfolio */

/* Start Contact */
.contact h3 {
    color: var(--main-color);
    margin-bottom: 10px;
}
.contact img {
    width: 30px;
}
.contact > div {
    margin: 40px;
    display: flex;
    gap: 40px;
}
.contact div .box {
    display: flex;
    gap: 10px;
}
.contact .box .info {
    display: flex;
    flex-direction: column;
}
/* End Contact */
/* Start Footer */
footer {
    background-color: #123;
    padding: 30px;
    color: #fff;
    text-align: center;
}
/* End Footer */