/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Open Sans', sans-serif;
}

/* Background Gradient */
body {
    background: linear-gradient(to right, #000, #3633cc); /* Gradient from black to blue */
    color: white;
    display: flex;
    flex-direction: column;
/*    justify-content: center;*/
    align-items: center;
    text-align: center;

}

/* Header with Transparent SVG */
header {
/*  position: absolute;*/
    width: 100%;
    height: 40%; /* 50% height of the page */
    min-height: 250px;
    display: flex;
    justify-content: top;
    align-items: center;
/*    background:red;*/
       margin:2% 0 0 0;
    padding:0;
/*      top:0px;*/
}

/* Content section */
.content {
/*      position: relative;*/
   
    max-width: 800px;
         letter-spacing: 1px;
         line-height: 210%;
font-weight: 400;
}

.content p {
     margin: 0% 10% 6% 10%;
    font-size: 1.4rem;
    
    color: white;
    padding: 20px;
}

/* Contact Button */
.contact {
    margin-top: 20px;
}

.contact-btn {
    background-color: black;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 20px;
    font-size: 1.4rem;
    font-weight: 900;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
     letter-spacing: 3px;
}

.contact-btn:hover {
    background-color: rgba(255,255,255,.5);
/*    color: black;*/
    border-color: black;

}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40%;
    margin-bottom: 20%;
}

.social-icon {
    margin: 0 10px;
    width: 40px;
    height: 40px;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: black;
}

.social-icon:hover circle{
    fill: #0077b5; /* Blue for Instagram and Facebook #0077b5*/
}

.social-icon:hover svg{
    fill: #fff; /* Blue for Instagram and Facebook */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
 header {

        height: 30%;
    }



}



@media (max-width: 480px) {
 header {
        height: 30%;
    }

    .content p {
        font-size: 1.3rem;
        line-height: 150%;
     margin: 0% 5% 10% 5%;
    font-weight: 500;
    color: white;
    padding: 10px;
    }

    .contact {
margin-top: 15%;
    }
}
