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


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection{
    background-color:rgba(0,0,0, 0.8)
}

body {
    font-family: 'Poppins', sans-serif;
}

main {
    position: relative;
    background-color: #1d2927;
    width: 100%;
    min-height: 750px;
    height: 100vh;
    overflow: hidden;
    padding: 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
}



.signature {
    width: 150px;
    grid-column-start: 2;
    padding-top: 20px;
}



nav{
    display:grid;
    grid-template-columns: 1fr auto 1fr;

}
a {
    text-decoration: none;
}

ul {
    list-style: none;
    align-items: center;
    justify-content: center;

}

nav ul{
    display: flex;
    justify-self: flex-end;
}

.nav-links a{
    display:inline-block;
    padding:1rem 2rem;
    color: #e7e2db;
    font-weight: 200;
    letter-spacing:1px;
    transition: 0.3s;
}

.nav-links a:hover{
    color: #f3c892;
    font-weight: 900;
}

.image-wrap{
    position: absolute;
    width: 85%;
    max-width:1000px;
    height: 0px;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    background-image: url("./img/278399070_1366098210500240_8246354505459387005_n.jpg");
    background-size: 150%;
    background-position: 50% 10%;
    background-repeat: no-repeat;
}

#big-name{
    position: relative;
    z-index: 1;
    color: #f3f0eb;
    font-size:7.5rem;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    padding-top: 100px;
    pointer-events: none;
    
}
#abouts{
    position: relative;
    z-index: 1;
    color: #f3f0eb;
    font-size:1.3rem;
    font-weight: 100;
    text-align: center;
    line-height: 1;
    padding-bottom: 40px;
    pointer-events: none;
}

.bottom-section{
    display: flex;
    justify-content:space-between;
    align-items: center;
}
.bottom-section p{
    color: #777;
    font-weight: 300;
    display: flex;
    align-items: center;
    cursor: default;
}
.socials{
    display: flex;
}

.socials a{
    margin-left: 0.8rem;
    font-size: 1.2rem;
    color: #777;
    transition: 0.3s;
}
.socials a:hover{
    color:#f3c892;
    font-weight: 900;
}


.scroll{
    position: absolute;
    color: #f3c892;
    font-weight: 300;
    left: 50%;
    transform: translateX(-45%);
    bottom: 100px;
    height:50px;
}
.scroll a{
    color: #f3c892;
    padding: 10px;
    font-size: 1.5rem;
    
}
.navs{
    
    display: flex;
    flex-direction:row;
    justify-content: space-evenly;
    align-items: center
}

.navs a:hover{
    color: #f3c892;
    font-weight: 500;
}
.line{
    position: absolute;
    width: 1px;
    height: 100px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-image: linear-gradient(to top, rgb(157,167,165), rgb(121,124,124));
}

@media screen and (max-width: 480px) {
    #big-name {
        font-size:4.5rem;
    }
  }