body {
    margin: 0px;
    background-color: aliceblue;
}

.mainbody {
    width: 1440px; 
    height: auto;
    margin: 0 auto;
    padding: 10px;
    background-color: black;
}

.center_container {
    width: 1000px; 
    height: auto;
    margin: 0 auto;
    padding: 10px;
    background-color: black;
}

.mainbody img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
}



#contactheading {
    background-color: #1D1F21;
    text-align: center;
    margin: 0px;
}

#contactheading h1 {
    margin: 0px;
    color: white;
    padding-top: 10px;
    font-size: 60px;
    font-weight: bolder;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px #000000;
}


.contactinfo {
    text-align: center;
    
}


#contactform {
    background-color: beige;
}

#name div {
    display: inline-block;
    border-color: black;
    border-style: solid;
    border-width: 4px;
    
}



#map {
    height: 400px;
    width: 100%;
}



#contactform input {
    background-color: beige;
    border-style: none;
}

#contactform input:focus {
    outline: none;
}

.description_box {
    height: 200px;
    resize: none;
}

.underline {
    
    border-bottom-color: black;
    border-bottom-style: solid;
    border-bottom: 2px;
}


.contactaddress {
    color: white;
    font-size: 25px;
}



button {
    margin-top: 15px;
    width: 25%;
    height:45px;
}

.contact-form {
    background-color: white;    
}

.contact-form {
    
   padding: 50px;
    
}

        .form {
            width: 50%;
            position: relative;
            height: 50px;
            overflow: hidden;
        }
        
        .form input {
            width: 100%;
            height: 100%;
            color: #595F6E;
            padding-top: 10px;
            border: none;
            outline: none;
        }
        
        .form label {
            position: absolute;
            bottom: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            pointer-events: none;
            border-bottom: 1px solid black;
        }
        
        .form label:after {
            content: "";
            position: absolute;
            left: 0px;
            bottom: -1px;
            height: 100%;
            width: 100%;
            border-bottom: 3px solid #5FA8D3;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .content-name {
            position: absolute;
            bottom: 5px;
            left: 0px;
            transition: all 0.3s ease;
        }
        
        .form input:focus + .label-name .content-name, .form input:valid + .label-name .content-name {
            transform: translateY(-150%);
            font-size: 14px;
            color: #5FA8D3;
        }
        
        .form input:focus + .label-name:after, .form input:valid + .label-name::after {
            transform: translateX(0%);
        }
        
        .form input:focus + .label-email .content-name, .form input:valid + .label-email .content-name {
            transform: translateY(-150%);
            font-size: 14px;
            color: #5FA8D3;
        }
        
        .form input:focus + .label-email:after, .form input:valid + .label-email::after {
            transform: translateX(0%);
        }
        
        
        .message-form {
            display: flex;
        }
        
        .message-form label {
            position: absolute;
            margin-top: 40px;
            
        }
        
        .message-form textarea {
            margin-top: 60px;
            resize: none;
        }
        
        .message-form textarea:focus {
            
            outline: none;
            border: 1px solid #5FA8D3;
        }
        
        .message-form textarea:focus + label {
            
            transform: translateY(-20px);
        }

