body{
    margin: 0;
    font-family: sans-serif;
}

nav{
    display: flex;
    flex-direction: row;
    background: rgb(255, 255, 255);
    border-bottom: 2px solid black;
    position: fixed;
    width: 100%;
}

nav a{
    margin-top: auto;
    margin-bottom: auto;
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover{
    color: rgba(0, 0, 0, 0.728);
}

.index_nav_left{
    width: 50%;
    padding: 1%;
    padding-left: 1%;
}

.index_nav_left a{
    text-decoration: none;
}

.full_logo{
    border: 2px solid black;
    width: fit-content;
    height: 20px;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 0.7%;
    padding-bottom: 0.7%;
    border-radius: 10px;
    border-left: 5px solid black;
    border-bottom: 6px solid black;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.463);
}

.full_logo p{
    height: fit-content;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.index_nav_right{
    justify-content: right;
    padding-right: 2%;
    display: flex;
    flex-direction: row;
    gap: 25px;
    width: 50%;
}


/* Starting section */
.index_main_cnt{
    font-family: "Sora", sans-serif;
    width: 98%;
    padding-left: 2%;
    padding-top: 2%;
    display: flex;
    flex-direction: row;
    height: 95vh;
}

.index_main_left_cnt{
    width: 55%;
}

.index_main_left_cnt h1{
    font-size: 70px;
    margin-top: 13%;
}

.index_main_left_cnt a{
    border: 2px solid black;
    padding: 1% 2% 1% 2%;
    text-decoration: none;
    color: black;
    font-weight: bold;
    border-radius: 10px;
    font-size: 20px;
    transition: background 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

.index_main_left_cnt a:hover{
    background: rgb(0, 76, 255);
    color: white;
    font-size: 22px;
}

.index_main_right_cnt{
    width: 45%;
    background: red;
    display: grid;
    overflow: hidden;
    background: url('blue grid.png');
    background-position: right -20px;
    background-size: 500px;
    background-position: right;
}

.index_main_right_cnt img{
    width: 110%;
    margin-top: -50px;
    margin-left: -30px;
}

/* About section */

.index_about_cnt{
    margin-top: 2px;
}

.about_what{
    padding: 4%;
    padding-top: 6%;
    padding-bottom: 5%;
    background: rgb(198 250 180);
    display: flex;
    flex-direction: row;
}

.about_what_left{
    width: 50%;
}

.index_about_cnt h2{
    font-size: 80px;
    margin-top: 0;
}

.index_about_cnt p{
    font-size: 25px;
    margin-top: -40px;
}

.about_what_right{
    width: 50%;
    overflow: hidden;
    text-align: right;
}

.about_what_right img{
    width: 75%;
    border-radius: 25px;
    border-top-right-radius: 35px;
    background: white;
}

.about_details{
    background: rgb(255 245 159);
    padding: 4%;
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
}

.about_details_card{
    width: 26%;
    background: white;
    height: 470px;
    border: 2px solid black;
    box-shadow: -12px 15px 0px 0px black;
    border-radius: 10px;
    padding: 2%;
    text-align: center;
}

.about_details_card h2{
    font-size: 50px;
}

.about_details_card p{
    margin-top: -10px;
}

.about_developer{
    background: rgb(165 180 251);
    padding: 2%;
    padding-left: 4%;
    padding-top: 5%;
    text-align: left;
    display: flex;
    flex-direction: row;
}

.about_developer h1{
    font-size: 70px;
}

.about_developer_left{
    width: 30%;
}

.about_developer_left img{
    width: 100%;
}

.about_developer_right{
    width: 65%;
}

.about_developer_right p{
    margin-top: 10px;
    text-align: left;
    font-size: 26px;
    margin-top: -30px;
}

.about_developer_right a{
    text-decoration: none;
    color: black;
    border: 2px solid black;
    background: white;
    padding: 1% 3% 1% 3%;
    font-size: 25px;
    border-radius: 30px;
}

.about_developer_right a:hover{
     box-shadow: -6px 6px 0px 0px black;
     background: rgb(236, 236, 236);
}

/* contact section */

.contact_cnt{
    background: url('contact background.png');
    background-size: 600px;
    padding: 5%;
    padding-top: 8%;
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
}

.contact_card{
    background: white;
    border: 3px solid black;
    border-radius: 20px;
    position: relative;
    padding: 1%;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 4.5%;
}

.contact_card h1{
    position: absolute;
    background: rgb(255, 213, 0);
    padding: 1% 5% 1% 5%;
    border: 2px solid black;
    border-radius: 20px;
    left: 50%;
    top: -7%;
    transform: translate(-50%, -50%);
}

.contact_card_unit{
    border: 2px solid black;
    display: flex;
    flex-direction: row;
    margin-top: 35px;
    border-radius: 20px;
    padding: 10px;
    gap: 10px;
}

.contact_card_unit_left{
    background: rgb(255, 69, 69);
    width: 6%;
    display: grid;
    place-items: center;
    border-radius: 10px;
    border: 2px solid black;
}

.contact_card_unit_left i{
    font-size: 27px;
    color: white;
}

.contact_card_unit_right{
    text-align: left;
    height: 50px;
    width: 64%;
}

.contact_card_unit_right h3{
    margin-top: 0;
}

.contact_card_unit_right p{
    margin-top: -15px;
}

.contact_card_unit_arrow{
    width: 30%;
    text-align: right;
    display: flex;
    flex-direction: row;
    justify-content: right;
    height: 50px;
    gap: 5px;
}

.contact_card_unit_arrow a{
    text-decoration: none;
    display: flex;
    gap: 5px;
    color: white;
    background: rgb(75, 75, 255);
    padding-right: 10%;
    padding-left: 10%;
    border-radius: 10px;
}

.contact_card_unit_arrow a:hover{
    background: rgb(28, 28, 255);
}

.contact_card_unit_arrow p{
    font-size: 20px;
    margin-top: auto;
    margin-bottom: auto;
}

.contact_card_unit_arrow i{
    margin-top: auto;
    margin-bottom: auto;
    font-size: 30px;
}