body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}
header {
    background-color: white;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    margin-left: 30px;
    max-height: 65px;
}

.social-icons {
    margin-right: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.social-icons p {
    color: black;
}

.social-icons a i {
    color: black;
}

.landing_screen{
    position: relative;
    height: 400px;
    background: url('/images/Group 303.png') center/cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0px;
    padding: 0px;
}
.landing_screen h1{
    font-size: 2em;
    margin-bottom: 0px
    
}
.landing_screen span{
    color:#48B453;
}

.container { 
    background-color: white; 
    width: 40%;
    border-radius: 2px; 
} 
.container2 { 
    display: flex;
    justify-content: space-between;
    background-color: transparent; 
    margin-top: 10px;
    width: 40%;
    border-radius: 2px; 
} 
.skill { 
    background-color: #48B453; 
    color: #48B453; 
    text-align: right; 
    width: 70%;
    font-size: 20px; 
}
.getintouch{
    width: 100%;
    align-items: center;
    text-align: center;
}
.getintouch h2{
   color: #48B453;
    
}
.getintouch span{
    font-weight: bold;
}

/* responsiveness */
@media screen and (max-width: 768px) {
    header {
        text-align: center;
    }
    header img {
        margin-bottom: 10px;
        margin-left: 10px;
    }
    .social-icons {
        margin-right: 10px;
        gap: 10px;
    }
    .social-icons p {
        font-size: small;
    }

    .landing_screen h1{
        font-size: 1.8em;
        margin-bottom: 0px;

    }
    .landing_screen p{
        font-size: small;

    }
    
}
