/* GENERAL */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    /* border: 1px solid red; */
}

body {
    font-family: "Poppins", sans-serif;
    background-color: aliceblue;
    /* background-color: beige; */
}

html {
    scroll-behavior: smooth;
}

p {
    color: rgb(85, 85, 85);
}

/* TRANSITION */

button, a, .project-container, .singular-social-container, .contact-info-container {
    transition: all 300ms ease;
}

/* DESKTOP NAV */

nav, .nav-links {
    display: flex;
}

nav {
    justify-content: space-around;
    align-items: center;
    height: 4rem;
    position: sticky;
    top: 0px;
    background-color: aliceblue;
    /* background-color: aqua; */
    border-bottom: 2px solid rgb(71, 71, 193);
}

.nav-links {
    gap: 2rem;
    list-style: none;
    font-size: 1.2rem;
}

.logo {
    font-size: 1.5rem;
    background-color: rgba(0, 0, 0, 0);
    color: black;
    border: none;
    
    font-weight: 400;
    padding: 0rem;
    width: 100%;
    border-radius: 0rem;
}

.logo:hover {
    color: rgb(71, 71, 193);
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: rgb(71, 71, 193);
}

/* SECTIONS */

section {
    max-width: 1080px;
    margin: 0 auto 0;
    /* padding-top: 4vh;
    height: 96vh;
    margin: 0 10rem;
    box-sizing: border-box;
    min-height: fit-content; */
    margin-bottom: 8rem
}

.section-container {
    display: flex;
    justify-content: center;
    /* justify-content: center; */
    gap: 2rem;
    /* height: 80vh; */
}

.section__pic-container {
    display: flex;
    height: 400px;
    width: 400px;
    margin: auto 0;
}

.section__text {
    align-self: center;
    text-align: center;
}

.section__text p {
    font-weight: 600;
}

.section__text__p1 {
    text-align: center;
}

.section__text__p2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.title {
    font-size: 3rem;
    text-align: center;
}

#socials-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

/* PROJECTS SECTION */

#projects {
    margin-top: 1rem;
}

#all-projects-container {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: 1fr 1fr 1fr;
    /* display: flex;
    flex-wrap: wrap; */
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.project-container {
    padding: 1.5rem;
    /* flex: 1 0 16rem; */
    background: rgb(0, 0, 0, 0.05);
    border-radius: 2rem;
    /* border: rgb(163, 163, 163) 0.1rem solid; */
    text-align: center;
    cursor: pointer;

    /* position: relative; */
}

.project-container:hover {
    /* border: rgb(71, 71, 193) 0.1rem solid; */
    /* color:rgb(71, 71, 193); */
    background: rgb(0, 0, 0, 0.15);
}

#projects img {
    width: 100%;
    border-radius: 2rem;
}

#project-btn-container {
    display: flex;
    flex-direction: row-reverse;
}

/* BUTTONS */

.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

button {
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem;
    width: 8rem;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
}

/* FOOTER */

footer {
    margin: 6rem 0 2rem;
    /* background-color: lightskyblue; */
}

footer p {
    text-align: center;
}

/* CONSTRUCTION */

.under-construction {
    background-color: yellow;
    position: absolute;
    border-radius: 2rem;
    margin: 1rem;
    padding: 0.4rem;
}