body {
    margin:0;
    padding:0;
}
.headerss {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1a1a2e;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-bottom:1px solid #ccc;
}
.headerss .container {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0px 0;
}
.headerss .logos {
    margin-left:0;
    padding:0;
}
.headerss .right-section {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.headerss .search-box {
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    width:400px;
}
.headerss .social-icons a {
    text-decoration: none;
    margin-left: 10px;
    font-size: 18px;
    color: #555;
}
.menu-rubrik {
    width: 100%;
    background: #1a1a2e;
    height:40px;
    line-height:30px;
    color:#f4c542;
    padding: 0px 0;
    margin-top:108px;
}
.menu-rubrik .container {
    color:#f4c542;
    width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.menu-rubrik a {
    color:#f4c542;
    text-decoration: none;
    font-size:16px;
    font-weight: bold;
    padding: 5px 7px;
    text-transform:uppercase;
    text-shadow: 1px 0px #fff;
}
.menu-rubrik a:hover {
    color:#fafafa;
}
.headliness-rubrik {
    width: 100%;
    background: #1a1a2e;
    color: white;
    margin-top:0px;
    border-top:1px solid #fff;
}
.headliness-rubrik .container {
    width: 1100px;
    height: 550px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.headliness-rubrik .container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding-top:15px;
    padding-bottom:15px 
}
@media screen and (max-width: 768px) {
    .headerss, .menu-rubrik, .headliness-rubrik {
        display: none;
    }
}
