body {
    background-color: rgb(10, 59, 8);
    min-height: 140vh;
    display: flex;
    flex-direction: column;
}

.rubrik {
    color: white;
    text-align: center;
}

.grid-jamforelse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.produkter {
    text-align: center;
    justify-self: center;
    align-self: start;
    margin-top: 30px;
}

div select {
    height: 30px;
    width: 150px;
    border-radius: 10px;
}

.gran-info {
    margin: 50px;
    background-color: rgb(255, 255, 255);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    display: none;
}

.gran-bild {
    height: 200px;
    width: 190px;
}

.all-box {
    flex: 1;
}

@media (max-width: 775px) {
    .grid-jamforelse {
        display: flex;
        flex-direction: column;
    }

    .produkter {
        margin: auto;
    }
}