* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    
}

html {
    scroll-behavior: smooth;
}

Body{
    background: #6D0133;
    color: white
        
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%; 
    background-color:#6D0133;
    display: flex; 
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header.sticky {
    border-bottom: .1rem solid rgba(0, 0, 0, .2);
}

#logo {
    position: relative;
    font-size: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
}

#logo::before{
    content: '';
    position:absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color:#6D0133;
    animation: showRight 1s ease forwards;
    animation-delay: .1s;
    
}

#navbar a {
    font-size: 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s
}
 
#navbar a:hover,
#navbar a.active {
color: pink
        
}

#menu-icon {
    font-size: 3.6rem;
    color: white;
    display: none;
}

#home {
    height: 100vh;
    display: flex;
    align-items: center;
    padding:0 10%;
}

.home-content h1 {
    position: relative;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.home-content h1::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background:#6D0133;
    animation: showRight 1s ease forwards;
    animation animation-delay: 1s;
    
}

.home-content h2 {
    position: relative;
    font-size: 32px;
    font-weight; 700;
    color: lightpink
}

.home-content h2::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background:#6D0133;
    animation: showRight 1s ease forwards;
    animation-delay: .1s;
}

.home-content {
 max-width: 700px;
     
}

.home-content p {
    font-size: 20px;
    text-align: justify;
    letter-spacing: 0.7px;
    padding: 1rem 0rem
}

#home-sci{
    position: absolute;
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
}

#home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid lightpink;
    border-radius: 50%;
    font-size: 20px; 
    color: lightpink;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
#home-sci a:hover{
    color: #6D0133
}

#home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: lightpink;
    z-index: -1;
    transition: .5s;
}

#home-sci a:hover::before {
    width: 100%;
}

/* KEYFRAMES ANIMATION */
@keyframes showRight {
    100%{
        width: 0;
        
    }
}

#menu-icon {
    font-size: 3.4rem;
    color: var(--text-color);
    display: none;
}

.btn {
    display: inline-block;
    padding: 3rem 0rem;
    background: #6D0133;
    border-radius: 4rem;
    box-shadow: 0 0 1rem (lightpink);
    font-size: 1.6rem;
    color:lightpink;
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
        
}

.btn:hover {
    box-shadow: none;
}

.btn2 {
    display: inline-block;
    padding: 1rem 2rem;
    background: lightpink;
    border-radius: 5rem;
    box-shadow: 0 0 1rem color(lightpink);
    font-size: 1.3rem;
    color: #6D0133;
    font-weight: 600;
    transition: .5s ease;
}

.btn2:hover{
    box-shadow: none;
    border-color: white;
    transform: scale(1.05);
}

#portfolio{
    background: #82013d
}

.portfolio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#portfolio h2 {
    text-align: center;
    padding: 3rem;
    font-size:3rem;
    
}

#portfolio h3 {
    padding: 1rem;
    font-size: 1.6rem;
}

.portfolio-container #portfolio-box {
    flex: 1 1 30rem;
    background: #6D0133;
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid color(white);
    margin-left: 5rem;
    margin-right: 5rem;
    margin-bottom: 5rem;
    transition: .5s ease:
    
}

#portfolio-box i {
 font-size: 2.5rem;
 color: lightpink;
 
}

#portfolio p {
    font-size: 1rem;
    margin: 1rem 0 3rem;
}

.portfolio-container #portfolio-box:hover {
    border-color: white;
    transform: scale(1.05);
}

.Contact h2 {
    text-align: center;
    font-size: 3rem;
    padding: 3rem
    
}

.Contact form {
    max-width: 70rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
}

.Contact form .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Contact form .input-box input,
.Contact form textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: white;
    background: lightpink;
    border-radius: .8rem;
    margin: .7rem 0;
}

.Contact form .input-box input {
    width: 49%;
}

.Contact form textarea {
    resize: none;
}

.Contact form .btn2 {
    margin-top: 2rem;
    cursor: pointer;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: #82013d
}

.footer-text p {
    font-size: 1rem
}

.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: lightpink;
    border-radius: .8rem;
    transition: .5s ease;
}

.footer-iconTop a:hover {
    box-shadow: 0 0 1rem color(#82013d)
}

.footer-iconTop a i {
    font-size: 2rem;
    color: white;
    
}

/* BREAKPOINTS */

@media (max-width 1200px) {
    html {
        font-size: 55%

    }
}
@media (max-width: 991px) {
    .header {
        padding: 2rem 3%;
    }
    section {
        padding: 10rem 3% 2rem;
    }
    .footer {
        padding: 2rem 3%;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: #6D0133;
        border-top: 1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
    }
    
    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        
    }

}