*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}
body{
    background: #0f0f0f;
    color: #ffffff;
}
::-webkit-scrollbar {
    width: 6px;
  }
  
::-webkit-scrollbar-track {
    background-color:transparent;
}
::-webkit-scrollbar-thumb {
    background: #00ccff;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #006680; 
}

/*--------------------HEADER--------------------*/
#header{
    margin: 0 0;
    width: 100%;
    height: 100vh;
    scroll-margin-top: 1000px;
}
.container{
    padding: 0 5%;
    width: 50%;
    box-sizing: border-box;
    float: left;
}
nav{
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #0f0f0f;
    position: -webkit-sticky;
	position: sticky;
	top: 0px;
    padding: 15px 5%;
}
.logo{
    width: 140px;
}
nav ul li{
    display: inline-block;
    margin: 10px 20px;
}
nav ul li p{
    padding: 15px 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.5s;

}
nav ul li p:hover{
    color: #00ccff;
}
.dropbtn {
    background-color:#0f0f0f;
    color: white;
    padding: 15px 15px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: color 0.5s;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0f0f0f;
    min-width: 85px;
    box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.5);
    z-index: 1;
}
.dropdown-content a {
    color: #ffffff;
    padding: 15px 15px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: color 0.5s;
}
.dropdown-content a:hover {
    color:#00ccff;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    color:#00ccff;
}
.headertext p{
    padding-top: 15%;
    font-size: 30px;
}
.headertext p a{
    color: #ffffff;
    text-decoration: none;
    position: relative;
    font-style: oblique;
}
.headertext p a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color:#00ccff;
    transform: scaleX(0);
    transition: transform 0.25s;
}
.headertext p a:hover::after{
    transform: scaleX(1);
}
.headertext h1{
    margin-top: 30px;
    font-size: 60px;
}
.headertext h1 span{
    color:#00ccff;
}
.container2{
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    float: left;
}
.image {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-image: url("images/lukasaric.png");
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}
.effect{
    box-sizing: border-box;
    filter: blur(75px);
    width: 75%;
    height: 75%;
    background-image: url("images/blob.svg");
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    position: relative;
    animation: spin 60s infinite linear;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/*--------------------ABOUT ME--------------------*/
#about{
    margin: 0 0;
    width: 100%;
    height: 100vh;
    background-image: url(images/background1.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    scroll-margin-top: 75px;
}
.containerAbout .row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 100vh;
    padding: 0 20%;
}
.aboutcol{
    background: linear-gradient(rgba(15, 15, 15, 0.7), transparent);
    width: 100%;
}
.tabtitles{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 60px 10%;
}
.tablinks{
    position: relative;
    font-size: 30px;
    font-weight: 1000;
    cursor: pointer;
}
.tablinks::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color:#00ccff;
    transform: scaleX(0);
    transition: transform 0.25s;
}
.tablinks:hover::after{
    transform: scaleX(1);
}
.tablinks.activelink::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color:#00ccff;
}
.tabcontents{
    display: none;
}
.tabcontents.activetab{
    display: block;
}
.aboutmetext{
    padding: 60px 10%;
    font-size: 20px;
    text-align: left;
    text-justify: inter-word;
}
.aboutmetext span{
    color:#00ccff;
}
.timeline {
    padding: 10%;
    position: relative;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: white;
    top: 0;
    bottom: 0;
    /*margin-left: -3px;*/
}
.container-timeline {
    padding: 30px 0;
    position: relative;
    width: 0%;
}
.container-timeline::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -19.5px;
    background-color: white;
    border: 4px solid #00ccff;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}
.content {
    padding: 0 60px;
    width: 600px;
}
.content p span{
    color:#bbbbbb;
}
.content p a{
    color:#00ccff;
    text-decoration: none;
    position: relative;
    font-style: oblique;
}
.content p a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color:#00ccff;
    transform: scaleX(0);
    transition: transform 0.25s;
}
.content p a:hover::after{
    transform: scaleX(1);
}
.tabcontents ul{
    margin: 0 10%;
}
.tabcontents ul li{
    margin: 15px 0;
}
.tabcontents ul li::marker{
    color:#00ccff;
    content: "•  ";
    font-size: 30px;
}
.tabcontents ul li a{
    color:#00ccff;
}
.tabcontents ul li p{
    font-size: 30px;
}
.tabcontents ul li span{
    color: #bbbbbb;
}
/*--------------------MY PROJECTS--------------------*/
#projects{
    margin: 0 0;
    width: 100%;
    height: 100vh;
    scroll-margin-top: 75px;
}
.title{
    padding: 60px 10%;
    font-size: 50px;
}
.projectgrid{
    display: grid;
    justify-content: center;
    grid-template-columns: auto auto;
    grid-template-rows: 400px;
    gap: 0 90px;
    padding: 0 10%;
    margin-bottom: 60px;
}
.project{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border:1px solid #006680;
}
.project img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
    object-fit: cover;
}
.project:hover img{
    transform: scale(1.2);
}
.layer{
    width: 100%;
    height: 0%;
    background: linear-gradient(rgba(0,0,0,0.1), #0f0f0f);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    text-align: center;
    font-size: 16px;
    transition: height 0.5s;
}
.project:hover .layer{
    height: 100%;
}
.layer h3{
    margin-bottom: 30px;
    font-size: 25px;
}
.layer .linkto{
    color:#ffffff;
    text-decoration: none;
    position: relative;
    font-style: oblique;
}
.layer .linkto::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color:#00ccff;
    transform: scaleX(0);
    transition: transform 0.25s;
}
.layer .linkto:hover::after{
    transform: scaleX(1);
}
.layer span{
    color:#00ccff;
    font-weight: 1000;
}
.layer .linkout{
    margin-top: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    line-height: 60px;
    background: #0f0f0f;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: transform 0.5s, color 0.2s;
}
.layer .linkout:hover{
    transform: scale(1.2);
    color: #00ccff;
}
.cbtn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn{
    margin: 60px 0;
    width: fit-content;
    text-decoration: none;
    color:#ffffff;
    background:#0f0f0f;
    border:2px solid #00ccff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.5s, transform 0.3s;
}
.btn:hover{
    background: #00ccff;
    transform: scale(1.1);
}

/*--------------------CONTACT ME--------------------*/
#contact{
    position:relative;
    margin: 0 0;
    width: 100%;
    height: 100vh;
    scroll-margin-top: 75px;
}
.container4 .row{
    padding: 0 10%;
    display: flex;
}
.contact1{
    flex-basis: 40%;
}
.contact2{
    flex-basis: 60%;
}
.contact1 p{
    vertical-align:middle;
    margin-bottom: 30px;
}
.contact1 a{
    color:#ffffff;
    text-decoration: none;
    vertical-align:middle;
    margin-bottom: 30px;
}
.contact1 a:hover{
    color:#00ccff;
}
.contact1 span{
    color:#00ccff;
    font-size: 30px;
    margin-right: 15px;
    vertical-align:middle;
}
.social{
    margin-top: 60px;
    font-size: 45px;
    display: flex;
}
.social a{
    margin-right: 30px;
    vertical-align: middle;
    text-decoration: none;
    color:#ffffff;
    transition: transform 0.3s, color 0.2s;
}
.social a:hover{
    transform: scale(1.1);
    color: #00ccff;
}
.contact2 form{
    width:100%;
}
form input, form textarea{
    width: 100%;
    border: 0;
    border-radius: 5px;
    padding: 20px 30px;
    outline: none;
    background:#303030;
    color:#ffffff;
    font-size: 18px;
}
form textarea{
    resize: none;
}
.inputcontainer{
    position: relative;
    margin-bottom: 120px;
}
.input {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}
::placeholder {
    color: transparent;
}
.inputcontainer label{
    pointer-events: none;
    position: absolute;
    top: 20px;
    left: 30px;
    padding: 0 4px;
    color: #DADCE0;
    font-size: 18px;
    z-index: 2;
    transition: 0.5s;
}
.input:focus + label {
    top: -35px;
    left: 5px;
    z-index: 2;
    color:#00ccff;
}
.input:focus {
    border: 2px solid #00ccff;
}
.input:not(:placeholder-shown)+ label {
    top: -35px;
    left: 5px;
    z-index: 2;
    color:#00ccff;
}
.btn2{
    margin-top: 130px;
}
.copyright{
    width: 100%;
    text-align: center;
    background:#303030;
    padding: 35px;
    position:absolute;
    bottom:0;
}
.grecaptcha-badge {
    display: none;
 }

/*--------------------CSS FOR SMALL SCREEN--------------------*/
@media only screen and (max-width: 600px){
    nav{
        justify-content: center;
        padding: 5px 3%;
        top: -60px;
    }
    nav ul li{
        display: inline-block;
        margin: 0px 4px;
        margin-top: 15px;
    }
    nav ul li a{
        padding: 0px 0px;
        font-size: 14px;
    }
    .dropbtn {
        padding: 10px 2px;
        font-size: 10px;
    }
    .dropdown {
        position: relative;
        display: inline-block;
    }
    .dropdown-content {
        min-width: 35px;
        z-index: 1;
    }
    .dropdown-content a {
        padding: 10px 2px;
        font-size: 10px;
    }
    .headertext p{
        font-size: 20px;
    }
    .headertext h1{
        margin-top: 20px;
        font-size: 30px;
    }
    .container{
        height:25%;
        width: 100%;
        clear:both;
    }
    .container2{
        padding-top: 15%;
        overflow-x: hidden;
        height: 70%;
        width: 100%;
        clear:both;
    }
/*--------------------about--------------------*/
    #about{
        scroll-margin-top: 43px;
        height: 80vh;
    }
    .containerAbout .row{
        padding: 0 0;
    }
    .tabtitles{
        padding: 30px 5%;
    }
    .tablinks{
        font-size: 15px;
    }
    .aboutmetext{
        padding: 0px 5%;
        font-size: 12px;
    }
    .timeline {
        padding: 5%;
    }
    .timeline::after {
        width: 3px;
    }
    .container-timeline {
        padding: 20px 0;
    }
    .container-timeline::after {
        width: 20px;
        height: 20px;
        right: -15.5px;
        top: 15px;
    }
    .content h2{
        font-size: 17px;
    }
    .content p{
        font-size: 13px;
    }
    .content {
        padding: 0 30px;
        width: 350px;
    }
    .tabcontents ul li p{
        font-size: 20px;
    }
    .tabcontents ul li span{
        font-size: 12px;
    }
/*--------------------projects--------------------*/
    #projects{
        scroll-margin-top: 43px;
        height: 150vh;
    }
    .title{
        padding: 30px 10%;
        font-size: 30px;
    }
    .projectgrid{
        grid-template-columns: auto;
        grid-template-rows: 400px;
        gap: 30px 0px;
        margin-bottom: 30px;
    }
    .layer{
        font-size: 14px;
    }
    .layer h3{
        margin-bottom: 20px;
        font-size: 20px;
    }
    .layer .linkout{
        font-size: 15px;
        line-height: 50px;
        width: 50px;
        height: 50px;
    }
    .layer .linkout:hover{
        transform: scale(1.2);
        color: #00ccff;
    }
    .cbtn{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .btn{
        margin: 60px 0;
        width: fit-content;
        text-decoration: none;
        color:#ffffff;
        background:#0f0f0f;
        border:2px solid #00ccff;
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 20px;
        font-weight: 500;
        transition: color 0.5s, transform 0.3s;
    }
    .btn:hover{
        background: #00ccff;
        transform: scale(1.1);
    }
/*--------------------contact--------------------*/
    #contact{
        height: 100vh;
        scroll-margin-top: 43px;
    }
    .container4 .row{
        padding: 0 10%;
        display: flex;
        flex-direction: column;
    }
    .contact1{
        flex-basis: none;
    }
    .contact2{
        margin-top: 60px;
        flex-basis: none;
    }
    .btn2{
        margin-top: 90px;
    }
    .copyright{
        position:relative;
    }
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}
body{
    background: #0f0f0f;
    color: #ffffff;
}
::-webkit-scrollbar {
    width: 6px;
  }
  
::-webkit-scrollbar-track {
    background-color:transparent;
}
::-webkit-scrollbar-thumb {
    background: #00ccff;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #006680; 
}

/*--------------------HEADER--------------------*/
#header{
    margin: 0 0;
    width: 100%;
    height: 100vh;
    scroll-margin-top: 1000px;
}
.container{
    padding: 0 5%;
    width: 50%;
    box-sizing: border-box;
    float: left;
}
nav{
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #0f0f0f;
    position: -webkit-sticky;
	position: sticky;
	top: 0px;
    padding: 15px 5%;
}
.logo{
    width: 140px;
}
nav ul li{
    display: inline-block;
    margin: 10px 20px;
}
nav ul li p{
    padding: 15px 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.5s;

}
nav ul li p:hover{
    color: #00ccff;
}
.dropbtn {
    background-color:#0f0f0f;
    color: white;
    padding: 15px 15px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: color 0.5s;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0f0f0f;
    min-width: 85px;
    box-shadow: 0px 8px 15px 0px rgba(0,0,0,0.5);
    z-index: 1;
}
.dropdown-content a {
    color: #ffffff;
    padding: 15px 15px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: color 0.5s;
}
.dropdown-content a:hover {
    color:#00ccff;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    color:#00ccff;
}
.headertext p{
    padding-top: 15%;
    font-size: 30px;
}
.headertext p a{
    color: #ffffff;
    text-decoration: none;
    position: relative;
    font-style: oblique;
}
.headertext p a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color:#00ccff;
    transform: scaleX(0);
    transition: transform 0.25s;
}
.headertext p a:hover::after{
    transform: scaleX(1);
}
.headertext h1{
    margin-top: 30px;
    font-size: 60px;
}
.headertext h1 span{
    color:#00ccff;
}
.container2{
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    float: left;
}
.image {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-image: url("images/lukasaric.png");
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}
.effect{
    box-sizing: border-box;
    filter: blur(75px);
    width: 75%;
    height: 75%;
    background-image: url("images/blob.svg");
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    position: relative;
    animation: spin 60s infinite linear;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/*--------------------ABOUT ME--------------------*/
#about{
    margin: 0 0;
    width: 100%;
    height: 100vh;
    background-image: url(images/background1.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    scroll-margin-top: 75px;
}
.containerAbout .row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 100vh;
    padding: 0 20%;
}
.aboutcol{
    background: linear-gradient(rgba(15, 15, 15, 0.7), transparent);
    width: 100%;
}
.tabtitles{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 60px 10%;
}
.tablinks{
    position: relative;
    font-size: 30px;
    font-weight: 1000;
    cursor: pointer;
}
.tablinks::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color:#00ccff;
    transform: scaleX(0);
    transition: transform 0.25s;
}
.tablinks:hover::after{
    transform: scaleX(1);
}
.tablinks.activelink::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color:#00ccff;
}
.tabcontents{
    display: none;
}
.tabcontents.activetab{
    display: block;
}
.aboutmetext{
    padding: 60px 10%;
    font-size: 20px;
    text-align: left;
    text-justify: inter-word;
}
.aboutmetext span{
    color:#00ccff;
}
.timeline {
    padding: 10%;
    position: relative;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: white;
    top: 0;
    bottom: 0;
    /*margin-left: -3px;*/
}
.container-timeline {
    padding: 30px 0;
    position: relative;
    width: 0%;
}
.container-timeline::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -19.5px;
    background-color: white;
    border: 4px solid #00ccff;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}
.content {
    padding: 0 60px;
    width: 600px;
}
.content p span{
    color:#bbbbbb;
}
.content p a{
    color:#00ccff;
    text-decoration: none;
    position: relative;
    font-style: oblique;
}
.content p a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color:#00ccff;
    transform: scaleX(0);
    transition: transform 0.25s;
}
.content p a:hover::after{
    transform: scaleX(1);
}
.tabcontents ul{
    margin: 0 10%;
}
.tabcontents ul li{
    margin: 15px 0;
}
.tabcontents ul li::marker{
    color:#00ccff;
    content: "•  ";
    font-size: 30px;
}
.tabcontents ul li a{
    color:#00ccff;
}
.tabcontents ul li p{
    font-size: 30px;
}
.tabcontents ul li span{
    color: #bbbbbb;
}
/*--------------------MY PROJECTS--------------------*/
#projects{
    margin: 0 0;
    width: 100%;
    height: 100vh;
    scroll-margin-top: 75px;
}
.title{
    padding: 60px 10%;
    font-size: 50px;
}
.projectgrid{
    display: grid;
    justify-content: center;
    grid-template-columns: auto auto;
    grid-template-rows: 400px;
    gap: 0 90px;
    padding: 0 10%;
    margin-bottom: 60px;
}
.project{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border:1px solid #006680;
}
.project img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
    object-fit: cover;
}
.project:hover img{
    transform: scale(1.2);
}
.layer{
    width: 100%;
    height: 0%;
    background: linear-gradient(rgba(0,0,0,0.1), #0f0f0f);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    text-align: center;
    font-size: 16px;
    transition: height 0.5s;
}
.project:hover .layer{
    height: 100%;
}
.layer h3{
    margin-bottom: 30px;
    font-size: 25px;
}
.layer .linkto{
    color:#ffffff;
    text-decoration: none;
    position: relative;
    font-style: oblique;
}
.layer .linkto::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color:#00ccff;
    transform: scaleX(0);
    transition: transform 0.25s;
}
.layer .linkto:hover::after{
    transform: scaleX(1);
}
.layer span{
    color:#00ccff;
    font-weight: 1000;
}
.layer .linkout{
    margin-top: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    line-height: 60px;
    background: #0f0f0f;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: transform 0.5s, color 0.2s;
}
.layer .linkout:hover{
    transform: scale(1.2);
    color: #00ccff;
}
.cbtn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn{
    margin: 60px 0;
    width: fit-content;
    text-decoration: none;
    color:#ffffff;
    background:#0f0f0f;
    border:2px solid #00ccff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.5s, transform 0.3s;
}
.btn:hover{
    background: #00ccff;
    transform: scale(1.1);
}

/*--------------------CONTACT ME--------------------*/
#contact{
    position:relative;
    margin: 0 0;
    width: 100%;
    height: 100vh;
    scroll-margin-top: 75px;
}
.container4 .row{
    padding: 0 10%;
    display: flex;
}
.contact1{
    flex-basis: 40%;
}
.contact2{
    flex-basis: 60%;
}
.contact1 p{
    vertical-align:middle;
    margin-bottom: 30px;
}
.contact1 a{
    color:#ffffff;
    text-decoration: none;
    vertical-align:middle;
    margin-bottom: 30px;
}
.contact1 a:hover{
    color:#00ccff;
}
.contact1 span{
    color:#00ccff;
    font-size: 30px;
    margin-right: 15px;
    vertical-align:middle;
}
.social{
    margin-top: 60px;
    font-size: 45px;
    display: flex;
}
.social a{
    margin-right: 30px;
    vertical-align: middle;
    text-decoration: none;
    color:#ffffff;
    transition: transform 0.3s, color 0.2s;
}
.social a:hover{
    transform: scale(1.1);
    color: #00ccff;
}
.contact2 form{
    width:100%;
}
form input, form textarea{
    width: 100%;
    border: 0;
    border-radius: 5px;
    padding: 20px 30px;
    outline: none;
    background:#303030;
    color:#ffffff;
    font-size: 18px;
}
form textarea{
    resize: none;
}
.inputcontainer{
    position: relative;
    margin-bottom: 120px;
}
.input {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}
::placeholder {
    color: transparent;
}
.inputcontainer label{
    pointer-events: none;
    position: absolute;
    top: 20px;
    left: 30px;
    padding: 0 4px;
    color: #DADCE0;
    font-size: 18px;
    z-index: 2;
    transition: 0.5s;
}
.input:focus + label {
    top: -35px;
    left: 5px;
    z-index: 2;
    color:#00ccff;
}
.input:focus {
    border: 2px solid #00ccff;
}
.input:not(:placeholder-shown)+ label {
    top: -35px;
    left: 5px;
    z-index: 2;
    color:#00ccff;
}
.btn2{
    margin-top: 130px;
}
.copyright{
    width: 100%;
    text-align: center;
    background:#303030;
    padding: 35px;
    position:absolute;
    bottom:0;
}
.grecaptcha-badge {
    display: none;
 }

/*--------------------CSS FOR SMALL SCREEN--------------------*/
@media only screen and (max-width: 600px){
    nav{
        justify-content: center;
        padding: 5px 3%;
        top: -60px;
    }
    nav ul li{
        display: inline-block;
        margin: 0px 4px;
        margin-top: 15px;
    }
    nav ul li a{
        padding: 0px 0px;
        font-size: 14px;
    }
    .dropbtn {
        padding: 10px 2px;
        font-size: 10px;
    }
    .dropdown {
        position: relative;
        display: inline-block;
    }
    .dropdown-content {
        min-width: 35px;
        z-index: 1;
    }
    .dropdown-content a {
        padding: 10px 2px;
        font-size: 10px;
    }
    .headertext p{
        font-size: 20px;
    }
    .headertext h1{
        margin-top: 20px;
        font-size: 30px;
    }
    .container{
        height:25%;
        width: 100%;
        clear:both;
    }
    .container2{
        padding-top: 15%;
        overflow-x: hidden;
        height: 70%;
        width: 100%;
        clear:both;
    }
/*--------------------about--------------------*/
    #about{
        scroll-margin-top: 43px;
        height: 80vh;
    }
    .containerAbout .row{
        padding: 0 0;
    }
    .tabtitles{
        padding: 30px 5%;
    }
    .tablinks{
        font-size: 15px;
    }
    .aboutmetext{
        padding: 0px 5%;
        font-size: 12px;
    }
    .timeline {
        padding: 5%;
    }
    .timeline::after {
        width: 3px;
    }
    .container-timeline {
        padding: 20px 0;
    }
    .container-timeline::after {
        width: 20px;
        height: 20px;
        right: -15.5px;
        top: 15px;
    }
    .content h2{
        font-size: 17px;
    }
    .content p{
        font-size: 13px;
    }
    .content {
        padding: 0 30px;
        width: 350px;
    }
    .tabcontents ul li p{
        font-size: 20px;
    }
    .tabcontents ul li span{
        font-size: 12px;
    }
/*--------------------projects--------------------*/
    #projects{
        scroll-margin-top: 43px;
        height: 150vh;
    }
    .title{
        padding: 30px 10%;
        font-size: 30px;
    }
    .projectgrid{
        grid-template-columns: auto;
        grid-template-rows: 400px;
        gap: 30px 0px;
        margin-bottom: 30px;
    }
    .layer{
        font-size: 14px;
    }
    .layer h3{
        margin-bottom: 20px;
        font-size: 20px;
    }
    .layer .linkout{
        font-size: 15px;
        line-height: 50px;
        width: 50px;
        height: 50px;
    }
    .layer .linkout:hover{
        transform: scale(1.2);
        color: #00ccff;
    }
    .cbtn{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .btn{
        margin: 60px 0;
        width: fit-content;
        text-decoration: none;
        color:#ffffff;
        background:#0f0f0f;
        border:2px solid #00ccff;
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 20px;
        font-weight: 500;
        transition: color 0.5s, transform 0.3s;
    }
    .btn:hover{
        background: #00ccff;
        transform: scale(1.1);
    }
/*--------------------contact--------------------*/
    #contact{
        height: 100vh;
        scroll-margin-top: 43px;
    }
    .container4 .row{
        padding: 0 10%;
        display: flex;
        flex-direction: column;
    }
    .contact1{
        flex-basis: none;
    }
    .contact2{
        margin-top: 60px;
        flex-basis: none;
    }
    .btn2{
        margin-top: 90px;
    }
    .copyright{
        position:relative;
    }
}