@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;@400;@500;@600&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body{
    min-height: 100vh;
    overflow-x: hidden;
}

/*---------> scrollbar <---------*/


/* width */

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.hero{
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
}

.hero .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-select: none;  
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none;
}

.hero #heroTxt{
    position: absolute;
    color: red;
    white-space: nowrap;
    font-size: 5.5vw;
    z-index: 10;
    display: inline-flex;
    transform: translateY(-70px);
}

.hero #heroLink{
    font-weight: bolder;
    text-decoration: none;
    -webkit-user-select: none;  
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none;
}

.hero #heroThingy{
    transition: 0.15s;
    pointer-events: none;

    -webkit-user-select: none;  
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none;
}

.hero #heroBtn{
    text-decoration: none;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 40px;
    background: #fff;
    transform: translateY(40px);
    color: #accf9c;
    font-size: 2em;
    z-index: 9;

    cursor: pointer;

    -webkit-user-select: none;  
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none;
}

@media(max-width:1366px){
    .hero #heroTxt{
        transform: translateY(-30px);
        font-size: 4vmax;
    }

    .hero #heroBtn{
        transform: translateY(70px);
        font-size: 2.5vmax;
        border-radius: 50px;
        z-index: 100;
    }
}


.about{
    position: relative;
    background: black;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 50px;
    padding-right: 55px;
    padding-left: 55px;
}

.about::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, #adcf9d, transparent);
    z-index: 1000;
}

.about #cakey{
    width: 20vw;
    transform: translateY(0px);
    transition: 0.1s transform;
}

.about p{
    font-size: 2em;
    color: #fff;
    text-decoration: none;
}

@media(max-width:1366px){
    .about #cakey{
        width: 25vw;
    }

    .about p{
        font-size: 1.5em;
    }
}

@media(max-width:800px){
    .about #cakey{
        width: 35vw;
    }

    .about p{
        font-size: 1em;
    }
}

.socials{
    padding-top: 70px;
}

.socials a{
    text-decoration: none;
    -webkit-user-select: none;  
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none;
}

.socials i {
    color: white;
    font-size: 60px;
    margin: 30px;
    padding: 25px 30px;
    border-radius: 100px;
    transition: 0.15s;
}

.socials a:first-child i{
    padding: 23px 23px;
}

.socials i:hover{
    color: black;
    background: white;
}

@media(max-width:1366px){
    .socials i {
        font-size: 50px;
        margin: 20px;
        padding: 10px 13px;
    }

    .socials a:first-child i{
        padding: 10px 10px;
    }
}

@media(max-width:800px){
    .socials i {
        font-size: 30px;
        margin: 6px;
        padding: 7px 8px;
    }

    .socials a:first-child i{
        padding: 8px 7px;
    }

    .socials a:last-child i{
        padding: 8px 10px;
    }
}

