@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap');

body{
    font-family: "Sen", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 0;
    margin: 0;
    background-color: #efefef;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header{
    width: 375px;
    position: sticky;
    top: 0;
    display: flex;
    height: 80px;
    box-shadow:0px 10px 20px #00000011;
    justify-content: space-between;
    padding:8px;
    box-sizing: border-box;
    background-color: white;
}
.header>*{
    align-self: center;
}
.main{
    overflow: hidden;
    min-height: calc(100dvh - 80px);
    width: 375px;
    background-color: #fff;
}
.image{
    width: 100%;
    background-color: #efefef81;
}
.content{
    padding: 24px;
}
button{
    width: 100%;
    background-color: black;
    padding: 8px;
    box-sizing: border-box;
    border: none;
    color: #efefef;
    font-family: inherit !important;
    font-size: 14px;
}
.Section{
    transition: 500ms;
    overflow: hidden;
}
.SectionVisible{
    max-height: 100dvh;
}
.SectionInvisible{
    max-height: 0;
}
input{
    border: 0;
    border-bottom: solid 1px black;
    min-width: 32px;
    padding: 5px;
    box-sizing: border-box;
    background-color: #efefef81;
}
select{
    border: 0;
    border-bottom: solid 1px black;
    min-width: 32px;
    padding: 5px;
    box-sizing: border-box;
    background-color: #efefef81;
}
.verticalFlex{
    display: flex; flex-direction:row; align-items:center;gap:10px;
}
textarea{
    border: 0;
    border-bottom: solid 1px black;
    background-color: #efefef81;
    padding: 5px;
    box-sizing: border-box;
    font-family: "Sen", sans-serif;
}
.bold{
    font-weight: bold;
}