.heading {
    top: 0;
    right: 0;
    left: 0;
    padding: 50px 0 20px 0;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: solid 1px rgb(223, 222, 222);
    z-index: 100;
}

.advert {
    color: wheat;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    left: 0;
    background-color: black;
    cursor: pointer;
}

.content {
    color: rgb(231, 231, 231);
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.all-templates {
    color: rgb(216, 209, 195);
    
}

.bundle:hover {
    text-decoration: underline;
}

.template {
    background-color: rgba(224, 221, 221, 0.2);
    border: none;
    color: rgb(234, 234, 234);
    border-radius: 8px;
    padding: 3px 8px;
    margin-right: 10px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.navigation-bar {
    display: flex;
    flex-direction: row;

}

.right-section {
    display: flex;
    margin-left: 50px;
    flex: 1;
    align-items: center;
}

.brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 30px;

}

.logo {
    width: 30px;
    margin-right: 10px;
    cursor: pointer;
}

.brandname {
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
}

.nav-link-container {
    display: flex;
    margin-left: 30px;
    align-items: center;
    width: 300px;
    justify-content: space-between;
}


.nav-link {
    display: inline-block;
    font-size: 14px;
    color: rgb(116, 114, 114);
    cursor: pointer;
    transition: color 0.15s;
}

.nav-link:hover {
    color: rgb(5, 5, 5);
}

.left-section {
    display: flex;
    align-items: center;
    margin-right: 50px;
    margin-left: 80px;
    flex: 2;
}

.signin {
    margin-right: 15px;
    cursor: pointer;
    color: rgb(116, 114, 114);
}

.signin:hover {
    color: rgb(5, 5, 5);
    font-weight: bold;
}

.deploy-button {
    color: rgb(255, 251, 251);
    background-color: rgb(0, 0, 0);
    border: none;
    cursor: pointer;
    padding: 7px 12px;
    border-radius: 5px;
}

.deploy-button:hover {
    opacity: 0.8;
}