* {
    margin: 0;
    padding: 0;
}

.nav {
    width: 100%;
    height: 10vh;
    /* border: 2px solid black; */
    display: flex;
}

.body {
    width: 100%;
    min-height: 70vh;
    /* border: 2px solid black; */
    background-color: #E9EBEE;
    display: flex;
    justify-content: center;
    padding-top: 100px;
    box-sizing: border-box;
}

.scroll {
    width: 100%;
    height: 50vh;
}

.logo {
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: #0866FF;
    padding: 15px 5px 5px 25px;
    position: fixed;
}

.nav1 {
    height: 100%;
    width: auto;
    /* border: 2px solid black;  */
    display: flex;
}

.nav2 {
    height: 100%;
    flex-grow: 1;
    justify-content: flex-end;
    display: flex;
    /* flex-direction: row-reverse; */
    gap: 10px;
    padding-right: 20px;
    padding-top: 6px;
}

#input1 {
    height: 42px;
    width: 220px;
    border-radius: 5px;
    text-align: center;
    border-color: 1px solid gray;
}

#input2 {
    height: 42px;
    width: 220px;
    border-radius: 5px;
    text-align: center;
    border-color: 1px solid gray;
}

#button1 {
    height: 45px;
    width: 80px;
    background-color: #0866FF;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    border: none;
}

.info {
    height: 50vh;
    width: 43%;
    /* border: 1px solid black; */
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.but2 {
    width: 80px;
    height: 35px;
    justify-content: center;
    padding-top: 5px;
    background-color: #E4E6EB;
    border-radius: 5px;
    border: none;
    font-size: 18px;
}

.last {
    display: flex;
    height: 10vh;
    width: 100%;
    gap: 10px;
    padding-right: 20px;
    justify-content: flex-end;
}

#search {
    width: 80px;
    height: 35px;
    justify-content: center;
    padding-top: 5px;
    background-color: #0866FF;
    border-radius: 5px;
    border: none;
    color: white;
    font-size: 18px;
}

@media (max-width: 900px) {
    .nav {
        flex-direction: column;
        height: auto;
        padding-bottom: 20px;
    }

    .logo {
        position: static;
        padding: 15px;
        text-align: center;
    }

    .nav1 {
        width: 100%;
        justify-content: center;
    }

    .nav2 {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        padding-right: 0;
    }

    .nav2 input {
        width: 90%;
        max-width: 300px;
        margin-bottom: 5px;
    }

    .nav2 button {
        width: 90%;
        max-width: 300px;
    }

    .body {
        padding-top: 20px;
        height: auto;
    }

    .info {
        width: 90%;
        height: auto;
        padding-bottom: 20px;
        box-sizing: border-box;
    }

    #account {
        width: 90% !important;
        max-width: 520px;
        box-sizing: border-box;
    }

    .last {
        padding-right: 0;
        justify-content: center;
    }
}