.tagline {
    margin-top: 50px;
    /* <-- this will now actually push it down */
    text-align: center;
    /* <-- applies to the whole line */
    font-size: 3.25rem;
    font-weight: bold;
}

.pro {
    color: rgb(181, 62, 255);
    font-size: 4.30rem;
}

.back {
    position: absolute;
    right: 20px;
    top: 10px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 16px;
    margin-top: 5px;
}

.back:hover {
    color: var(--accent-color);
    margin-top: 3px;
}

:root {
    --background: #3e3e3e;
    --text-color: #ffffff;
    --accent-color: #ff6f61;
}

body {
    background: var(--background);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);

}

* {
    transition: all 0.3s ease;
}

.title {
    text-align: center;
    margin-top: 8px;
    color: black;
    font-size: 24px;
    margin-left: -1190px;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: #a4a4a4;
    z-index: 1000;
    margin-bottom: 150px;
}

.offer {
    margin-top: 20px;
    font-size: 20px;
    color: rgb(255, 255, 255);
    background: #f75a4c;
    width: fit-content;
    padding: 15px;
    border-radius: 12px;
    padding-top: 0px;
    box-shadow: none 2px 4px rgba(0, 0, 0, 0.1);
}

.offer:hover {
    background: #ff3b2e;

}

.offers {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 100px;
}

.offer-title {
    text-align: center;
    padding-right: 9px;

}

.offer-description {
    font-family: 'Arial';
    text-align: center;
}

.offer-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.offer-link:hover {
    color: black;
}