@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#title {
    color: #010b14;
   display: flex;
   justify-content: center;
}

#container {
    background-color: #f0f8ff;
    width: 1000px;
    padding: 0px;
    border-radius: 8px;
    right: 100px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#background {
    position: fixed;
    inset: 0;
    z-index: -1;
}

#background img {
    width: 100%;
    height: 117%;
    object-fit: cover;
}

.tab-buttons {
    display: flex;
    gap: 6px;
}

.tab-btn {
    width: 100%;
    border: none;
    color: #020617;
    background-color: #f0f8ff;
    border-radius: 8px 8px 0px 0px;
    font-weight: 500;
    padding: 8px;
    cursor: pointer;
    transition: background-color .3s ease;

}

.tab-btn.active {
    background-color: #f8f9ff;
}

.tab-btn:hover {
    background-color: #eaeaea;
}

.content {
    display: none;
}

.content.show {
    display: flex;
    gap: 14px;
    background-color: #ffffff;
    border-radius: 0px 0px 8px 8px;
    padding: 16px;
}

.content-img {
    width: 100%;
}