@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*
    {
        font-family: Poppins;
    }
body
    {
        margin:0;
        padding: 0;
    }
header 
    {
        width:100%;
        background-image: url("tlo.png");
        color: white;
        text-align: center;
    }
nav ul li a 
    {
        display: block;
        padding: 10px;
        color: #B10900;
        font-weight: bold;
        font-size: 25px;
        text-decoration: none;
        transition: all 0.3s;
    }
 
nav ul
    {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        max-width: 100vw;

    }
    
    
nav ul li a:hover
    {
        filter:brightness(1.1);
        letter-spacing: 4px;
    }
h1
    {
        margin: 0;
        font-size: 35px;
    }

.container {
        display: flex;
    }
    
.sidebar {
        width: 25%;
        color: #fff;
        padding: 0px;
        height: auto;
        background-image: url("tlo.png");
        background-attachment: fixed;
    }
    
.center {
        flex: 1;
        padding-left:20px;
        padding-right:20px;
        background-image: url("tlo2.png");
        font-size: 25px;
        max-width: 100vw;
        box-sizing: border-box;
    }
header a 
    {
        text-decoration: none;
        color: white;
    }

img {
    width: 100%;
}