*{
    margin: 0;
    padding: 0;
    background-image: url("../images/websiteBGimage.png");
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-repeat: repeat;
}
.header{
    min-height: 100vh;
    width: 100%;;
    background-position: center;
    background-size: cover;
    position: relative;
    text-align: center;
    padding: 0;
}
nav{
    display: flex;
    padding: 0;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 200px;
}
.nav-links{
    flex: 1;
    text-align: right;
    display: flex;
    margin: 20px;
    margin-left: 400px;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    text-decoration: none;
    font-size: 13px;
    color: #88070794;
    font-weight: bold;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #ec792c;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
/* Style for the contact section */
.contact-section {
    padding: 50px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.follow-buttons a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    color: #010500e0;
    border-radius: 10px;
    font-weight: bold;
}

.contact-details p {
    font-size: 16px;
    margin: 10px 0;
}

.contact-form {
    margin-top: 30px;
}

.contact-form h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #db8d07;
    color: #010500e0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ffbf5a;
}
@media(max-width: 700px){
    .text-box{
    width: 100%;
    color: black;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    }
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: rgba(238, 201, 121, 0.016);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: black;
        margin: 20px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 20px;
    }
}