@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;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    font-family: "Poppins";
}

body,
html,
.body-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}


body {
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
}

header {
    /* background-color: pink; */
    background-color: rgba(0, 0, 0, 0.4);
    padding: 15px;
    color: white;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

header a {
    font-size: 13pt;
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.31);
    display: flex;
    align-items: center;
    gap: 5px;
}

header a img {
    width: 20px;
    filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.31));
}

div.info {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

div.info img.banner {
    width: 90%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid pink;
}

div.info img.profile {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 100%;
    border: 2px solid pink;
    margin-top: -60px;
}

div.info .user {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}

div.info .description {
    color: rgba(255, 255, 255, 0.7);
    width: 90%;
    text-align: center;
}

div.packages {
    display: flex;
    margin-top: 20px;
    width: 90%;
    color: rgba(255, 255, 255, 0.8);
    flex-direction: column;
    gap: 10px;
}

div.packages h2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    width: 100%;
}

div.package {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    color: white;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

div.package img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

div.pack-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

div.pack-data h3 {
    font-size: 20pt;
}

div.pack-btn button {
    background-color: rgb(72, 212, 86);
    color: white;
    font-weight: bold;
    width: 100%;
    border-radius: 10px;
    padding: 5px;
    font-size: 13pt;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: none;
}

div.body-container {
    width: 100%;
    max-width: 568px;
    display: flex;
}

.link {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 10px;
    color: white;
    text-align: center;
    text-decoration: none;
}

.packages-box {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    color: white;
    border-radius: 10px;
    display: flex;
    /* gap: 10px; */
    justify-content: space-between;
    flex-direction: column;
}

.packages-box img {
    width: 100%;
}