body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

header{
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    z-index: 100;
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    font-weight: 600;
}   

header a{
    color: #1F4E79;
    font-size: 18px;
    text-decoration: none;
}

header a:hover{
    color: rgb(45, 241, 255);
   text-shadow: 2px 2px 4px #173655;
}

header img{
    width: 150px;
}

.base{
    width: 1200px;
    margin: 0 auto;
}

nav{
   display: flex;
   gap: 40px;
   justify-content: space-evenly;
}

p:hover .hide {
    max-width: 100%;
}

.oll{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    height: 400px;
    margin: 100px 0;
}

.left{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 50%;
}

.left h2{
    font-size: 60px;
    text-transform: uppercase;
}

.left h2 span{
    color: rgb(158, 163, 0);
}

.left p{
    font-size: 36px;
    margin: 10px 0;
}

.right{
    width: 50%;
}

.right img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 6px 6px 15px #666565;
}

h1{
    text-align: center;
    margin: 30px 0;
}

table{
    margin-bottom: 50px;
    font-size: 18px;
    border-radius: 25px;
    box-shadow: 6px 6px 15px black;
}

table img{
    width: 70px;
    border: none;
    border-radius: 5px;
    text-align: center;
}

table th{
    background-color: #000000;
    color: #fff;
    border-top: 0.5px solid #c0c0c0;
    border-bottom: 0.5px solid #c0c0c0;
}

table th{
    padding: 10px;
}
table th:first-child{
    border-top-left-radius: 20px;
}
table th:last-child{
    border-top-right-radius: 20px;
}

table tr:nth-child(even){
    background-color: #ffffff;
}

table tr:nth-child(odd){
    background-color: #e4e4e4;
    border-top: 0.5px solid #c0c0c0;
}

table td{
    border-bottom: 1px solid #b3b0ef;
    padding: 15px;
}

.gallery h2{
    text-align: center;
    padding-bottom: 35px;
}

.rasm-con{
    column-count: 3;
    column-gap: 15px;
    margin-bottom: 20px;
}

.rasm-con img{
    width: 400px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 4px 4px 15px #999;
    overflow: hidden;
    margin-bottom: 15px;
}

.gallery img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
  margin: 20px;
  border: none; 
}

.rating input {
  display: none;
}

.rating label {
  font-size: 32px;
  line-height: 1;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}

.rating label::before {
  content: "★";
}

.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
  color: #ffc107;
}


footer{
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #c0c0c0;
    background-color: #4a4a4a;
    color: #0e0e0e;
    text-align: center;
    font-size: 16px;
}