@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,900;1,700&display=swap");

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 30px;
    display: flex;
    align-items: center;
    z-index: 100;
}

header .logo {
    color: #080808;
    font-weight: 800;
    text-decoration: none;
    font-size: 2rem;
    text-transform: uppercase;
}

/* Projects section */
.projects {
    padding: 50px 0px;
    margin-top: 5rem;
}

h1 {
    font-weight: bolder;
    text-transform: uppercase;
    font-weight: 900;
}
.project-pic {
    width: 50%;
    height: 50%;
}
  
.projects-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
  
.projects-title {
    text-align: center;
    margin-bottom: 1rem;
}
  
.project-container {
    text-align: center;
    width: 55rem;
    padding: 1rem;
    box-shadow: 0 10px 100px rgb(0, 11, 170);
}
  
.project-container p {
    padding: 0.5rem;
}
/* Projects section ends */

/* Footer */
footer {
    background-color: #ffffff;
    text-decoration: none;
    padding: 1.25rem;
    text-align: center;
    margin: 2rem 0 0;
}

.footer-icon img {
    height: 10%;
    width: 10%;
}

a {
    color: #070707;
    text-decoration: none;
}
/* Footer Ends*/