body{
    color: rgb(255, 255, 255);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgb(0, 0, 0);
    /* background-image:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(Alpha-pattern-_20388.jpeg) ; */
}
#logo{
height: 70px;
border-radius: 50%;
border-color: black;
border: 4px solid;
}
header{
    background-color:rgb(255, 255, 255);
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    color: rgb(0, 0, 0);
    text-decoration-style: wavy;
    text-shadow: 2px;
    position: sticky;
}
.name{
    font-size: 80px;
    margin: 0;
    font-style: italic;
    font-family: fantasy;
}
nav a{
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin: 0 15px;
    font-size: 24px;
}
nav a:hover{
    text-decoration: underline;
    color: rgb(90, 90, 90);
}
.about{
    display: flex;
    background-color:rgb(109, 109, 109) ;
    margin: 50px;
    border-radius: 50px;
}
.pic1{
    height: 500px;
    width: 400px;
    border-radius: 70px;
    border: 50px solid white;
    align-items: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;

}
.pic1:hover{
    box-shadow: 0px 0px 15px rgb(0, 0, 0);
    transform: scale(1.05);
}
.div1{
    margin-right: 70px;
    margin-left: 70px;
    background-color: white;
    box-sizing: content-box;
    border-radius: 50px;
    margin-top: 50px;
    margin-bottom: 70px;
}
.div2{
    margin-left: 70px;
    margin-right: 70px;
    border: 50px solid white;
    border-radius: 50px;
    text-align: center;
    background-color: black;
    margin-top: 50px;
    margin-bottom: 70px;
}
h2{
    font-style: italic;
    font-size: 60px;
    text-align: center;
}
p{
    font-size: 40px;
    text-align: center;
}

 .creators {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;   /* wraps on smaller screens */
    padding: 40px;
}

.card {
    background: rgb(111, 111, 111);
    border-radius: 15px;
    padding: 25px;
    width: 250px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    font-size: 32px;
}

.card:hover {
    transform: translateY(-5px);
}

.creator-pic {
    width: 100%;
    height: 200px;
    object-fit: cover;     /* keeps image proportions */
    border-radius: 10px;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: your-color;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 32px;
    
}

.patterns-intro {
    text-align: center;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 images per row */
    gap: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pic {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pic:hover {
    transform: scale(1.05); /* slight zoom on hover */
}
.pic{
    width: 200px;
    margin: 50px, 50px;
    padding: 50px;
}

 .modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.link:hover{
    color: black;
}
form{
    max-width: 600px;
    margin: 24px auto;
}
form label{
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}
form input, form textarea, form button{
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;

}
form input:focus, form textarea:focus{
    border-color: #000000;
    outline: none;
}
form button{
    background-color: #737577;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:active{
    background-color: #585858;
}    
#result{
    text-align: center;
    font-size: 32px;
}
.footer{
    text-align: center;
    color: white;
    font-size: 16px;
}