body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header {
    display: flex;
    max-width: 1500px;
    justify-content: space-between;
    width: 100%;
    padding: 20px 40px;
}
.topButtonDiv {
    display: flex;
    gap: 40;
}
.topButton {
    border-style: none;
    font-size: 18px;
    background-color: #09A8FA;
    border-radius: 10px;
    width: 200px;
    padding: 15px 20px;
    color: white;
    cursor: pointer;
}
.topButton.disabled {
    background-color: #eee;
    margin-left: 10px;
    color: #bbb;
}
.topLoginButton {
    border-style: none;
    font-size: 18px;
    background-color: white;
    border-radius: 30px;
    width: 200px;
    padding: 15px 20px;
    color: gray;
    border: 1px solid gray;
    cursor: pointer;
}
.solidLine {
    width: 100vw;
    background-repeat: repeat-x;
    background-size: 10px;
    height: 10px;
}
.imageSection {
    max-width: 1500px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.sectionImage {
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 500px) {
    .header {
        padding: 10px 0px;
    }
    .topButton {
        font-size: 15px;
        width: 90px;
        height: 40px;
        padding: 0px;
    }
    .topLoginButton {
        font-size: 15px;
        width: 90px;
        height: 40px;
        padding: 0px;
    }
}