body{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #010630, rgb(102, 22, 22) );
    
}
footer{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.whatsapp{
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 70px;
    right: -19px;

}

.social-media{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.github{
    background-color: white;
}
img:hover{
    width: 35px;
    height: 35px;
}
.contact-container{
    box-shadow: 0 1px 5px;
    border-radius: 10px;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    margin-top: 50px;
}
.email{
    background-color:  rgb(40, 40, 204);
    color: white;
    border: none;
    border-radius: 5px;
    margin: 35px 0px;
    font-weight: 600;
    justify-self: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0 1px 10px;
    padding: 7px ;
    transition: 0.15s ease;
    width: fit-content;
}
.email:hover{
    opacity: 0.8;
}

.center{
    justify-content: center;
    align-items: center;
    display: flex;
}
input,textarea{
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    margin-top: 15px;
    background-color: transparent;
    border-bottom: 2px solid white;
    color: white;
    font-weight: 500;
    font-size: large;
    

}
input::placeholder{
    font-weight: 600;
}
textarea::placeholder{
    padding: 5px;
    font-weight: 600;
}
input:focus, textarea:focus{
    outline: none;
}
.form-section{
    display: flex;
    flex-direction: column;
}
.whatsapp-button, .phone-button{
    background-color: green;
    padding: 13px 20px;
    border: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.20s;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
}
.phone-button{
    color: white;
    background-color: #000428;

    display: flex;
    flex-direction: row;
}
.whatsapp-button:hover, .phone-button:hover{
    opacity: 0.8;
}
img{
    height: 30px;
    width: 30px;
    transition: 0.15s ease;   
}
p{
    margin-left: 5px;
}
.button-contents{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}