.heading {
    display: flex;
    flex-direction: column;
    text-align: left;
    background: white;
    width: 100%;
    height: 150px;
    box-sizing: border-box;
    margin-left: 0;
    padding-left: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.top-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}




.nav {
    display: inline-block;
    margin-right: 50px;
    margin-left: 100px;
    margin-top: 10px;
    font-family: 'Arial', sans-serif;
}

.heading img {
    margin-left: 90px;
    padding: 0;
    line-height: 1.5;

}

.heading p {
    margin: 0;
    padding: 0;
    line-height: 2;
    font-size: 17px;
}

.heading a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    transition: color 0.1s ease;
    margin-right: 20px;
}

.heading a:hover {
    color: #007bff;
}



.header {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    padding: 0;
}

.register-button {
    margin-top: 15px;
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    width: 120px;
    height: 35px;
}

.register-button:hover {
    background-color: #bfbfbf;
}

.login-button {
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    background: #56bbff;
    width: 120px;
    display: flex;
    align-items: flex-end;
    height: 35px;
}

.login-button:hover {
    background-color: #217ab8;
}

* {
    padding: 0;
    margin: 0;
}

.title {
    font-family: "JetBrains Mono Light", sans-serif;
    margin-top: 100px;
}

.wiki-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.wiki-card {
    padding: 10px;
    box-shadow: 4px 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    height: 350px;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "JetBrains Mono Light", sans-serif;
    margin-left: 25px;
    margin-right: 25px;
    transition: 0.3s;
}

.wiki-card:hover {
    box-shadow: 4px 0 6px rgba(0,0,0,0.5);
}

.wiki-card h {
    margin-top: 25px;
}

.wiki-card p {
    margin-top: 25px;
    margin-left: 40px;
    margin-right: 40px;
    font-size: 20px;
}

@media (max-width: 1450px) {
    .heading {
        height: auto;
        padding: 15px;
    }

    .nav {
        margin-left: 10px;
        margin-right: 10px;
    }

    .heading img {
        margin-left: 10px;
    }

    .wiki-container {
        flex-direction: column;
        align-items: center;
    }

    .wiki-card {
        padding: 10px;
        width: 90%;
        height: auto;
        margin: 20px 0;
    }

    .register-button, .login-button {
        width: 100px;
        font-size: 14px;
    }

    .heading p, .heading a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 700px) {
    .heading {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 10px;
        position: static;
    }

    .top-bar {
        flex-direction: column;
        align-items: center;
    }

    .top-bar-btn {
        margin-top: 10px;
    }

    .heading img {
        margin: 0;
        width: 150px;
        height: auto;
    }

    .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 10px 0;
    }

    .nav a {
        margin: 5px 0;
    }

    .info-box-conatiner {
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }

    .info-box {
        margin-left: 0;
        margin-right: 0;
        width: 90%;
    }

    .heading img {
        margin-left: 0;
        width: 80%;
        height: auto;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .contact-conatiner,
    .links-conatiner,
    .legal-conatiner {
        margin: 10px 0;
        background-color: white;
    }
}

body {
    background-color: rgb(248, 253, 255);
}