

body {

    font-family: Consolas; color:white;font-size: large;
    margin: 0;
    padding: 15px;
    background-image: url(Images/Dark_wood.jpg) ;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    border-radius: 50px;

}
header {
    background-color:white;
    color: white;
    padding: 0px;
    text-align: left;
    width: 100;
    border-radius: 50px;
    
}

.navbar {
    background-color:black;      
    overflow: hidden;
    text-align: right;
    padding: 10px;
    border-radius: 20px ;
    
}

nav a {
    float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
nav a:hover {
    background-color: #ddd;
    color: black;
    border-radius: 20px;
}

.main {
    padding: 20px;  
}
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 0;
    position: fixed;
    width: 100%;
    height: 20;
    bottom: 0;
    font-size: small;
}

#logo{
    border-radius: 20px;
    padding-left: 50px;

}

.box{
    padding: 20px;
    margin: 0px;


}

.location{
    font-size: 2.5em;
}

iframe{
    border-radius: 30px;
    padding: 20px;
    float: left;
    
}


#workshop{
    padding-left: 20px;
    padding-top: 20px;
    border-radius: 50px;
  
}

/* Style the input fields and textarea in the form */
form input[type="text"],
form input[type="email"],
form input[type="tel"],

form textarea {
    border-radius: 10px; /* Adjust the value to control the roundness */
    border: 3px solid #01030e; /* Optional: Add a border for better visibility */
    padding: 10px; /* Optional: Add padding for better appearance */
    font-size: 14px; /* Optional: Make text more readable */
}

/* Style the submit button */
form button[type="submit"] {
    background-color: #0d1aa6; /* Button background color */
    color: white; /* Text color */
    border: none; /* Remove border */
    border-radius: 10px; /* Rounded corners */
    padding: 10px 20px; /* Padding inside the button */
    font-size: 16px; /* Font size for the text */
    cursor: pointer; /* Change cursor to pointer on hover */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions */
}

/* Hover effect for the submit button */
form button[type="submit"]:hover {
    background-color: #10b2cf; /* Darker green on hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}

.gallery {
    text-align: center;
    padding: 20px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-item {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.gallery-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}