.topbar {
    position: fixed;
    top: 0;
    width: auto;
    min-width: 300px;
    height: 40px;
    background: #292c2e;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 12px rgba(52, 54, 56, 0.5);
    z-index: 1000;
    border-radius: 0 0 20px 0;
    left: 0;
    margin-left: 0;
    box-sizing: border-box;
}

.text {
    color: #b9b9b9;
    font-family: Montserrat, sans-serif;
    text-shadow: none;
    font-size: 18px;
}

.p2 {
    color: #b9b9b9;
    font-family: Montserrat, sans-serif;
    padding: 20px 20px;
    text-shadow: none;
    font-size: 16px;
}

@media (max-width: 600px) {
    .text {
        font-size: 16px;
    }
    
    .p2 {
        font-size: 14px;
        padding: 15px 15px;
    }
    
    .topbar {
        min-width: 280px;
        padding: 0 15px;
    }
    
    .tuffa {
        font-size: 12px;
        padding: 6px 8px;
    }
}

.tuffa {
    margin: 5px;
    padding: 5px;
    font-size: 12px;
    font-family: Montserrat, sans-serif;
    color: #b9b9b9;
    padding: 5px 4px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease-in-out;
}

.tuffa:hover {
    color: #ffffff;
}

.logo {
    height: 25px;
    width: 50px;
    position: relative;
    margin-right: 10px;
}

.links-container {
    display: flex;
    margin: 0;
}

img {
    width: 380px;
}

.tuffp {
    margin-left: 50px;
    margin-right: 50px;
    font-size: 20px;
}

@media (max-width: 600px) {
    img {
        width: 50%;
    }
}

body {
    background-color: #141414;
}

.my-button {
    display: inline-block;
    padding: 10px 10px;
    background-color: #0e0d0d;
    color: #b9b9b9;
    font-family: Montserrat, sans-serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 2px 0;
    transition: background-color 0.3s ease-in-out;
}

.my-button:hover {
    background-color: #162327;
}

a {
    text-decoration: none;
    color: #b9b9b9;
    transition: color 0.3s;
}

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
}

.centered-div {
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: #111111;
    box-shadow: 0 6px 20px #111111;
}

h1, h2, h3, h4, h5, h6, p, img, button {
    text-align: center;
    margin: 20px 0;
    text-shadow: none;
    box-shadow: none;
}