
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

nav {
    background-color: black;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 24px;
}

ul ,a{
    list-style-type: none;
    display: flex;
    margin-left: 70%;
}

li,a {
    color: grey;
    cursor: pointer;
    margin-left: 20px;
}

li,a:hover {
    color: white;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 0px;
}

.box {
    width: 220px;
    height: 220px;
    overflow: hidden;
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.subscription {
    padding: 20px 0;
}

.subscription-plans1 {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.subscription-plans2 {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 2px;
}

.plan {
    background-color: #333;
    color: white;
    border-radius: 10px;
    padding: 20px;
    width: 350px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.plan h2 {
    font-size: 1.5em;
}

.plan p {
    font-size: 0.9em;
}
.plan:hover{
    color:black;
    background-color: white;
}
.about p {
    padding: 20px;
}
.about h1{
    padding: 10px;
}
.images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 50px;
}
.contact {
    padding: 20px 0;
}

.contact h1 {
    padding-bottom: 10px;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

.left,
.right {
    width: 250px;
    text-align: left;
}

.divider {
    height: 100px;
    width: 2px;
    background-color: grey;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #333;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    color: white;
    text-align: left;
}

.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: grey;
}

label {
    font-size: 14px;
    display: block;
    margin: 10px 0 5px;
}

input,
select {
    width: 100%;
    padding: 8px;
    margin: 5px 0 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #222;
    color: white;
}

.submit-button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #45a049;
}

.enroll-button {
    margin: 20px 0;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.enroll-button:hover {
    background-color: #45a049;
}