.logo {
    width: 40px;
    height: 40px;
    margin-right: 75px;
    border-radius: 4px;
}

.header-conteiner {
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 15px;
    position: fixed;
    background-color: #2a293b;
    top: 0;
    width: 100%;
}

.header-text {
    background-color: #393745;
    border-radius: 10px;
}
    
ul {
    margin: 0;
    padding: 5px;
}

#mainnav li { /*menu*/
    list-style-type: none;
    margin: 0;
    padding: 30px;
    display: inline;
}  

#mainnav a {
	text-decoration: none;
	color: #fff;
    font-size: 17px;
}

#mainnav a:hover {
	text-decoration: underline;
}

body {
	background-color: #2a293b;
	color: rgb(255, 255, 255);
	font-family: 'Oswald', sans-serif;
    margin: 25px;
    margin-top: 100px;
    padding: 0px;
}

.container {
    background-color: #393745;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.container1 {
    background-color: #2a293b;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    margin-top: 20px;
}
      
.container img {
    width: 400px;
    height: 500px;
    margin-right: 40px;
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 20px;
}

.text {
    margin-left: 40px;
}

.block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.block1, .block2 {
    flex: 1 1 45%;
    min-width: 200px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.block1 {
    background-color: #393745;
    padding: 10px;
    width: 600px;
    height: 520px;
    margin-top: 40px;
    border-radius: 20px;
    float: left;
    margin-right: 15px;
}

.block2 {
    background-color: #393745;
    padding: 10px;
    width: 600px;
    height: 520px;
    margin-top: 40px;
    border-radius: 20px;
    float: left;
    margin-left: 15px;
}

.block::after {
    content: "";
    display: table;
    clear: both;
}

.list {
    display: flex;
    flex-wrap: wrap;
}

.list1 {
    background-color: #393745;
    padding: 10px;
    width: 600px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.list2 {
    background-color: #393745;
    padding: 10px;
    width: 600px;
    border-radius: 20px;
    margin-left: 100px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.button:hover {
    background-color:rgb(131, 131, 131);
}

.login-conteiner{
    width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    font-family: 'Oswald', sans-serif;
}
  
.login-conteiner h2 {
    margin-bottom: 30px;
    font-size: 40px;
}
  
.login-conteiner p {
    margin-bottom: 50px;
    text-align: center;
}
  
.input-conteiner {
    display: flex;
    align-items: center;
}
  
.input-conteiner input[type="email"] {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    margin-right: 10px;
    width: 70%;
    font-size: 16px;
    background-color: #f2f2f2;
    color: #393745;
    font-family: 'Oswald', sans-serif;
}
  
.input-conteiner input[type="email"]::placeholder {
    color: #393745;
}
  
.input-conteiner button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background-color: #3f3d4e; /*цвет кнопки */
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    
}
  
.input-conteiner button:hover {
    background-color: #68657b;
}

.reviews-container {
    margin: 20px auto;
    font-family: 'Oswald', sans-serif;
    border-radius: 5px;
  }
  
.review {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
  
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
  
.user-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #46454f; /* авы, звезды, даты, текст */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 10px;
}
  
.review-info {
    display: flex;
    flex-direction: column;
}
  
.user-name {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #5a5a5a;
}
  
.review-details {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #46454f;
}
  
.stars {
    margin-right: 10px;
    color: #46454f;
}
  
.review-text {
    font-size: 14px;
    color: #46454f;
    line-height: 1.4;
}

.contacts-section {
    background-color: #393745;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.contacts-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #ffeb7a;
}

.contact-item p {
    font-size: 18px;
    margin: 0;
}

.contact-item a {
    color: #79a0de;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ffffff;
}

.contact-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item li {
    margin-bottom: 8px;
}