html , body{
    /*background-color: rgba(0, 0, 0, 0.01);*/
    height: 100%;
    width: 100%;
    margin: 0;
}
.grid {
    display: grid;
    height: 100%;
    width: 100%;
    align-content: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.grid3 {
    grid-template-columns: 600px 600px 600px;
    grid-template-columns: 600px 0px 0px;
    grid-template-rows: 1080px;
}

.grid6 {
    grid-template-columns: 200px 400px;
    grid-template-rows: 100px 150px 150px 150px 150px 150px;
    grid-gap: 20px;
}

.grid1 {
    grid-template-columns: 600px;
    grid-template-rows: 1080px;
}

.behave {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    height: 150px;
    width: 200px;
    background-color: black;
    border: 2px black solid;
    border-radius: 20px;
    /*filter: blur(20px);*/
}

.locations, .loc {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-content: flex-start;
    align-items: center;
    /*justify-content: center;*/
    height: 145px;
    width: 395px;
    padding-left: 5px;
    padding-top: 5px;
    background-color: white;
    border: 5px black solid;
    border: 2px dashed #aaa;
    border-radius: 20px;
    transition: all 0.2s;
}

.locations.dragover {
    background: #ebffff
}

.name {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: fit-content;
    width: 100px;
    font-family: 'SF Pro Rounded';
    font-family: Noto Sans;
    font-size: large;
    background-color: white;
    border-radius: 15px;
    margin: 5px;
    padding: 0 10px 0 10px;
    cursor: grab;
    user-select: none;
    box-shadow: black 0 0 3px 0px;
    transition: all 1s;
}

.name:active {
    cursor: grabbing;
}

.best {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: fit-content;
    width: 100px;
    font-family: 'SF Pro Rounded';
    font-family: Noto Sans;
    font-size: large;
    background-color: white;
    border-radius: 15px;
    margin: 5px;
    padding: 0 10px 0 10px;
    cursor: not-allowed;
    user-select: none;
    box-shadow: black 0 0 3px 0px;
}

.font {
    margin: 10px;
    font-family: 'SF Pro Rounded';
    font-family: Noto Sans;
    font-size: large;
    /*text-shadow: 0 0 5px white;*/
}