* {
    margin: 0;
    padding: 0;
}

body {
    background-color:aqua;
    color: navy;
    font-family: poppins;
    font-size: 20px;
}

.basic-info {
    width: 80%;
    margin: 50px auto;
}

.contact-box {
    margin: 50px;
    background-color:  darkblue;
    display: flex;
    border-radius: 50px;
    color: rgb(41, 159, 218);
}

.contact-left {
    flex-basis: 60%;
    padding: 40px 60px;
}
.contact-left h3 {
font-size: 26px;
}

.contact-right h3 {
    font-size: 26px;
}

.contact-right {
    flex-basis: 40%;
    padding: 40px;
    background:rgb(234, 234, 234);
    border-radius: 50px;
}

.basic-info h2 {
    margin-bottom: 10px;
    font-weight: 800;
}

.basic-info p {
    margin-bottom: 40px;
    font-weight: 400;
}
.my-socials {
    font-size: 25px;
    justify-content: space-around;
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.input-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    row-gap: 30px;
}

.input-row .input-group {
    flex-basis: 45%;
}

input {
    width: 100%;
    border: none;
    border-bottom: 1px solid;
    outline-style: none;
    padding: 5px;
    border-radius: 10px;
    background-color: rgb(216, 228, 251);

}

textarea {
    width: 100%;
    border: 1px solid;
    outline-style: none;
    padding: 10px;
    border-radius: 10px;
    background-color: rgb(216, 228, 251);
    box-sizing: border-box;
}

button {
    background-color: rgb(215, 98, 14);
    width: 100px;
    border: none;
    outline-style: none;
    color:rgb(251, 246, 246);
    font-family: poppins;
    font-size: 15px;
    border-radius: 10px;
}

.Copy-rights{
font-size: 16px;
color: black;
font-weight: 200;
position: absolute;
right: 40%;
}

@media only screen and (max-width: 768px) {
.basic-info,
.contact-box{
flex: 0 0 100%;
text-align: center;
}
}


