@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Poppins&display=swap');
body{
    padding: 0;
    margin: 0;
    background: linear-gradient(-15deg, rgb(183, 238, 255),#fff);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
#container{
    width: 400px;
    height: 600px;
    background: linear-gradient(0deg, rgb(207 207 207), #fffeef,rgb(255, 255, 255));
    border-radius: 20px;
    box-shadow: 15px 15px 8px 5px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.row{
    width: 100%;
    display: flex;
    margin-top: 5px;
}
.row:nth-child(1){
    justify-content: center;
    align-content: center;
    height: 100px;
}
.row:nth-child(1) img{
    height: 100px;
}
.row:nth-child(2){
    font-size: 1.8rem;
    text-align: center;
    justify-content: center;
    letter-spacing: 1.5px;
}
.row:nth-child(2) h1{
    margin: 10px;
}
.row:nth-child(3){
    width: 80%;
    height: 75px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    justify-content: space-between;
}
.row:nth-child(3) .dash{
    width: 12%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 5px;
}
.row:nth-child(3) .dash_item{
    width: 100%;
    height: 1px;
    background-color: black;
}
.row:nth-child(3) #content_row{
    width: 76%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}
.row:nth-child(4){
    width: 90%;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.row:nth-child(4) .row_item{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}
.row:nth-child(4) .row_item:nth-child(1){
    border-right: 1px solid black;
    padding-right: 10px;
}
.row:nth-child(4) .row_item:nth-child(2){
    padding-left: 10px;
    transform: translateY(-12px);
}
.row:nth-child(4) span{
    text-align: center;
}
.row:nth-child(4) span:nth-child(1){
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
}
.row:nth-child(4) span:nth-child(2){
    white-space: nowrap;
}
.row:nth-child(5){
    width: fit-content;
    align-items: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    border-top: 1px solid black;
    padding-top: 10px;
}  
.row:nth-child(5) .row_item{
    flex: content;
    height: 100%;
    border-right: 1px solid black;
    padding: 0 10px;
    text-align: center;
}
.row:nth-child(5) .row_item:nth-child(1){
    border-left: 1px solid black;
}
.row:nth-child(5) .row_item span:nth-child(1){
    font-weight: 600;
}

#footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.footer_item{
    width: 100%;
    text-align: center;
    font-size: .8rem;
}