*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f7f7f7;
}



.profile-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f7f7f7;
}

.register-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f7f7f7;
}


.center-text-main {
    width: auto;
    height: auto;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.center-text-opress {
    width: auto;
    height: auto;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.wrapper {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    padding: 20px 0;
}

.grid-container {
    display: grid;
    gap: 50px;
    grid-auto-rows: minmax(100px, auto);
    text-align: center;
    width: 100%;
    justify-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(1,1fr);
    }
}

.card{
    width: 90%;
}

.card-link{
    padding: 10px 20px;
    background-color: rgb(13, 110, 253);
    color: black;
    border: 1px solid;
    border-radius: 10px;
}

.typewriter {
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
    font-family: 'Courier New', Courier, monospace;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    50% { border-color: transparent; }
}

/* Bounce Animation for Arrow Icon */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.custom-carousel {
    width: 100%; 
    height: 400px; 
    overflow: hidden; 
}

.custom-carousel .carousel-item img {
    width: auto; 
    height: 100%; 
    object-fit: contain; 
}

.custom-carousel .carousel-control-prev-icon,
.custom-carousel .carousel-control-next-icon {
    background-color: black;
    border-radius: 50%; 
    width: 2rem;
    height: 2rem;
}