

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: 100;
    letter-spacing: 0.25px;
}

body {
 
  
    background-color: whitesmoke;
    gap: 1rem;

    font-family: sans-serif;
}

h1 {
    color: white;
}

.banner {
    width: 100%;
    height: 60px;
    background-color: #5B40AD;

    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
    gap: 1rem;
}

.banner img {
    height: 50%;
}

.menuicon {
    color: white;
    opacity: 0.5;
    font-size: 1.25rem;
}

.root {
    width: 100%;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.projname {
    font-weight: bold;
}


.inputs input {
    height: 40px;
    width: 300px;
    padding: 0 12px;
    border: 2px solid black;
}

.app {
    width: 440px;
    height: 650px;
    background-color: #202020;
    border: 1.5px solid rgb(255, 255, 255, .2);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.app .top {
    width: 100%;
    height: 80px;
    border-bottom: 1px solid rgb(255, 255, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.app .top .user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    height: 100%;
}
.user .pfp {
    height: 50%;
    aspect-ratio: 1/1;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;

    background-color: rgb(255, 255, 255, 0.05);
}
.user .pfp p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}



.content {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    padding: 8% 0 0% 0;
}
/* port_total */
.port_total {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: white;
    font-weight: 500;
}

.port_change {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 0.75rem;
}

.port_change p:nth-child(1) {
    color: rgb(84, 175, 98);
    font-size: 1.2rem;
}
.port_change p:nth-child(2) {
    background-color: rgb(84, 175, 98, 0.1);
    color: rgb(84, 175, 98, 0.75);
    padding: 3px 4px;
    font-size: 1rem;
    border-radius: 5px;
}



.port_buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    padding: 0 1.5rem;
    

}

.port_buttons .port_button {
    background-color: rgb(255, 255, 255, 0.05);
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.port_buttons .port_button i {
    font-size: 1.75rem;
    color: rgb(172, 163, 244);
    margin-top: -2px;
}

.port_buttons .port_button p {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgb(128, 128, 128, 0.8);

}


.tokens {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 100%;

    padding: 0 1.5rem;
    padding-top: 2rem;
}
.tokens .menu  {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
    padding: 0 0 10px 0;
    gap: 1rem;
}
.tokens .menu p {
    font-size: 1.2rem;
    color: white;
}
.tokens .menu p:nth-child(2) {
    opacity: 0.5;
}
.menu i {
    margin-left: auto;
    font-size: 1.5rem;
    color: white;
    opacity: 0.5;

}

.tokens_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}
.tokens .token {
    background-color: rgb(255, 255, 255, 0.05);
    width: 100%;
    height: 80px;
    border-radius: 17.5px;

    display: flex;
    align-items: center;
    justify-content: start;
    padding: 1rem;
    gap: 0.75rem;
}



.token .token_img {
    height: 100%;
    border-radius: 100%;
}

.token .token_info {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 2.5px;
}
.token .token_info p:nth-child(1) {
    font-weight: 100;
    font-size: 1rem;
}
.token .token_info p:nth-child(2) {
    opacity: 0.5;
    font-size: 0.9rem;
}

.token_price {
    margin-left: auto;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 2.5px;
}

.token_price p:nth-child(1) {
    font-size: 1rem;
}
.token_price p:nth-child(2) {
    color: rgb(84, 175, 98);
    font-size: 0.9rem;
}





/* bottom */
.bottom {
    width: 100%;
}