* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.top-bar {
    background-image: linear-gradient(to right, rgb(76, 30, 114), rgb(55, 37, 119), purple);
    text-align: center;
    padding: 20px 0;    
    color: rgb(169, 152, 192);
    font-weight: bold; 
}

.top-bar p {
    font-size: italic;
    font-size: 24px;    
    margin-bottom: 15px;    
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.btn-write {
    display: inline-block;
    background-color: rgb(26, 0, 8);
    color: white;   
    text-decoration: none;  
    padding: 10px 20px;
    border-radius: 5px; font-weight: bold;  
    font-size: 14px;
}

header {
    background-color: #0e0024;
    border-bottom: 1px solid rgb(78, 23, 129);
    position: sticky;   
    top: 0; 
    z-index: 1000;
    width: 100%;    


}
  
.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px 20px;
}

.container::after {
    content: "";
    display: table;
    clear: both;
}

.container img {
    height: 100px;
    float: left;
    margin-top: 10px;
}

.container nav {
    float: right;
}

.container nav ul {
    margin: 0;
    padding: 0;
}

.container nav li {
    list-style: none;
    display: inline-block;
    margin-left: 30px;
    
}

.container nav li a {
    text-decoration: none;
    color: rgb(144, 110, 153);
    font-size: 16px;
    font-weight: 799;
   
}

.login {
    background-color: rgb(116, 35, 163);
    color: rgb(255, 255, 255) !important;
    padding: 10px 25px;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold; 
}

/*4*/
.container2 {
    background-image: linear-gradient(to right, #9c75a1, #350f44);
    min-height: 100vh;
    padding: 50px 20px;
}


.content-block {
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}


.content-block::after {
    content: "";
    display: table;
    clear: both;
}


.text-part {
    float: left;
    width: 60%;
    padding-right: 20px;
}


.img-part {
    float: right;
    width: 150px;
    height: 150px;
}


.container2 h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #4b2f63;
}


.container2 p {
    line-height: 1.5;
    color: #482d5e;
    margin-bottom: 15px;
    font-weight: bold;
}


.date {
    font-size: 12px;
    color: #260b64;
}
/*4 end*/