@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #050d21;
    color: #fff;
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: fit-content;
    width: fit-content;
    padding: 50px;
}

.titleSection {
    text-align: center;
    padding-bottom: 50px;
}

.titleSection h1 {
    font-weight: bold;
    font-size: 54px;
}

.titleSection h1 span {
    color: #b46cf8;
}

.titleSection h2 {
    font-size: 22px;
    color: #c9d5ee;
}

.inputSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 30px;
}

.inputSection input {
    width: 80%;
    padding: 10px 20px;
    outline: none;
    border: none;
    border-radius: 3px;
}

.inputSection button {
    width: 18%;
    cursor: pointer;
    padding: 10px 20px;
    outline: none;
    border: none;
    border-radius: 3px;
    background-color: #1b66f8;
    color: #fff;
    font-weight: bold;
    transition: 0.4s ease;
}

.inputSection button:hover {
    background-color: #0b4fd6;
}

table {
    border-collapse: collapse;
    width: 100%;
    height: fit-content;
}

table, th, td, tr {
    border: 2px solid #fff;
}
  
th, td {
    text-align: left;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}

th, td {
    padding-right: 200px;
}

th {
    font-weight: bold;
}

th {
    color: #b46cf8;
}




