* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
}

a {
    text-decoration: none;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    cursor: grab;    
}

.header {
    background-color: #000000;
    color: #ffffffa9;
    padding: 0.4rem;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #E5CC64;
}

.hamburger {
    display: none;
    cursor: pointer;
    margin-right: 1rem;
}

.hamburger-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.cross-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    display: none;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    color: #E5CC64;
}

.menu-list-items {
    margin-right: 2rem;
    color: #E5CC64;
}

.links {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
    color: #E5CC64;
}

.links:hover {
    color: #ccc;
}

.hero {
    background-image: linear-gradient(to bottom, #000000, #546bab);
    background-size: 100%;
    background-position: 0% 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E5CC64;
    margin-top: 4rem;
}

.intro {
    text-align: center;
}

.headings {
    margin-bottom: 2rem;
}

.my-heading {
    font-size: 3rem;
    font-weight: bold;
}

.greet-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.sub-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-img img {
    width: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid black;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.about-img img:hover {
    width: 220px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    border-radius: 2%;
    transform: translateY(5px);
    transition-duration: 1.5s;
    cursor: zoom-in;
}

.about {
    padding: 2rem;
    background-color: #E3E0C5;
}

.about-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-col {
    width: 33.33%;
}

.my-card {
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: 310px;
    margin: 1rem;
    padding: 2rem;
}

.my-card:hover {
    background-image: linear-gradient(to bottom, #000000, #546bab);
    color: #E5CC64;
    transition-duration: 1s;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    transform: translateY(5px);
    border-radius: 2%;
    cursor:pointer;
}

.icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blue-text {
    color: #337ab7;
}


.movie-heading {
    text-align: center;
    margin-bottom: 2rem;
    color: #aad7ff;
}

.movie-content {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.movie {
    background-color: #334152;
    padding: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 0.5rem;
    text-align: left;
    border: 1px solid #ddd;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E3E0C5;
}

.contact-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-content {
    display: flex;
    justify-content:center;
    align-items: center;
}

.my-card2 {
    margin: 1px;
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: 310px;
    min-width: 160px;
    justify-content: center;
    justify-items: center;
    justify-self:center;
}

.my-card2:hover {
    background-image: linear-gradient(to bottom, #000000, #546bab);
    color: #E5CC64;
    transition-duration: 1s;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    transform: translateY(5px);
    border-radius: 2%;
    cursor:pointer;
}

.twbox {
    display: flex;
    justify-content: center;
}
.typewriter h1 {
    color: #E5CC64;
    overflow: hidden;
    border-right: .15em solid #E5CC64;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation:
        typing 3.5s steps(30, end),
        blink-caret .5s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #E5CC64
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #333;
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-list-items {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .show {
        display: flex;
    }

    .hero {
        height: 100vh;
        margin-top: 4rem;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        width: 100%;
        margin-right: 0;
    }

    .about-image {
        width: 100%;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .my-row {
        flex-direction: column;
        align-items: center;
    }

    .my-col {
        width: 100%;
    }

    .movie-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
    }
}
