* {
    padding: 0;
    margin: 0;
}

h1 {
    color: white;
    font-size: 40px;
}

h2 {
    color: white;
    font-size: 20px;
}

header {
    background-color: rgb(2, 6, 27);
}

.brand-img {
    border: 2px solid white;
    border-radius: 5px 5px 5px 5px;
}

.brand-img.zoom-out {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.brand-img.zoom-out:hover {
    transform: scale(0.9);
}

h3 {
    color: black;
    font-size: 30px;
}

h4 {
    color: black;
    font-size: 30px;

}

h5 {
    color: black;
    font-size: 20px;
}

h6 {
    font-size: 15px;
    color: black;
}

.card:hover {
    box-shadow: 0 0 8px blue;
    transform: translateY(-3px);
}

.card {
    cursor: pointer;
    padding: 70px;
    border-radius: 10px 10px 10px 10px;
}

/* Typewriter cursor */
.typewriter::after {
    content: '|';
    display: inline-block;
    margin-left: 8px;
    color: white;
    animation: blink 0.7s steps(2, end) infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

footer {
    background-color: rgb(6, 2, 27);
}

.follow {
    font-size: 15px;
    color: gray;
}

.right {
    color: gray;
    font-size: 15px;
}