* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: white;
    color: black;
    font-family: sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top {
    top: 10px;
    margin: 20px;
    right: 50%;
    left: 50%;
}

.top-right {
    position: fixed;
    top: 10px;
    right: 0px;
    margin: 20px;
}


