*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(172, 172, 172);
    color: #fff;
    
}
.container1 {
    width: 100%;
    height: 100vh;
    background-color: #C4C4C4;
    font-family: 'Share Tech', sans-serif;
    position: relative;
}
.logo{
    font-weight: 600;
    font-size: 3.8rem;
    color: #222;
}
nav{
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul li{
    display: inline-block;
    list-style: none;
    padding: 6px 20px;
    font-weight: 500;
    font-size: 1 rem;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
ul li:hover{
    background-color: #ff4321;
    border-radius: 25px;
    text-decoration: none;
}

.container {
    width: 90%;
    margin: 50px auto;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h1 {
    text-align: center;
    font-family: 'Anta', sans-serif;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #444;
}

th {
    background-color: #333;
    color: #ff6b00;
}

tr:hover {
    background-color: rgb(250, 39, 1);
}

tbody tr:nth-child(even) {
    background-color: #333;
}
button {
    background-color: #fd3f0f;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

.button:hover {
    background-color: #c0392b;

}
