body {
    background-color: var(--hedenGrön);
    font-family: "Inter", sans-serif;
}

:root {
    --box-margin: 3.5vw;
}

#grid1 {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    width: 100%;
}

#container1 {
    margin-left: 10vw;
    margin-top: 12vw;
    width: 45vw;
}

#title-text1 {
    color: white;
    font-size: 5vw;
    font-weight: 600;
    margin-bottom: 2vw;
}

#brödtext1 {
    color: white;
    font-size: 3vw;
    margin-bottom: 5vw;
}

#btn1 {
    height: auto;
    width: 15vw;
    padding: 1.2vw 0vw;
    border: solid 0.25vw white;
    border-radius: 1.2vw;
    color: white;
}
#btn1:hover {
    color: var(--hedenGrön);
    background-color: white;
    cursor: pointer;
}

#btn-text1 {
    color: inherit;
    text-align: center;
    font-size: 1.7vw;
    font-weight: 600;
}

#main-logo {
    margin-top: 15vw;
    margin-left: 5vw;
    width: 30vw;
}

#box-grid1 {
    margin-top: 7vw;
    margin-bottom: 5vw;
    margin-left: var(--box-margin);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

#box {
    width: calc(100% - (var(--box-margin) * 1.5));
    height: 30vw;
    border-radius: 3vw;
    margin-right: var(--box-margin);
    background-color: white;
}

.box-title {
    margin: 3vw;
    font-size: 3vw;
    color: var(--hedenGrön);
}

.box-text {
    margin: 3vw;
    margin-top: -1vw;
    font-size: 1.7vw;
}

#box-image1 {
    width: calc(100% - (var(--box-margin) * 1.5));
    height: 30vw;
    border-radius: 3vw;
    margin-right: var(--box-margin);

    background: url('../images/spel1.jpg') center center no-repeat;
    background-size: cover;
}

#box-grid2 {
    margin-bottom: 5vw;
    margin-left: var(--box-margin);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

#box-image2 {
    width: calc(100% - (var(--box-margin) * 1.5));
    height: 30vw;
    border-radius: 3vw;
    margin-right: var(--box-margin);

    background: url('../images/spel2.jpg') center center no-repeat;
    background-size: cover;
}

#box2 {
    width: 100%;
    height: 31vw;
    background-color: white;
    padding-top: 5vw;
}

#title-text2 {
    --width: 70vw;
    color: var(--hedenGrön);
    font-size: 4vw;
    font-weight: 600;
    width: var(--width);
    margin-left: calc(50% - (var(--width) / 2));
    text-align: center;
}

#rolling-stones-container {
    width: 100%;
    overflow: hidden;
}

#rolling-stones {
    display: grid;
    grid-template-columns: 25vw 25vw 25vw 25vw 25vw 25vw 25vw 25vw 25vw 25vw 25vw;
    height: 20vw;
    margin: 5vw 0;
    justify-items: center;
    animation: scroll 30s linear infinite;
}

.rolling-stone {
    height: 10vw;
    width: 15vw;
    background: url('../images/skolor/Bernadotte.png') center center no-repeat;
    background-size: contain;
    
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(CALC(-25vw * 7));
    }
}

#resultat-container {
    padding-top: 5vw;
    padding-bottom: 5vw;
}

#title-text3 {
    --width: 70vw;
    color: white;
    font-size: 4vw;
    font-weight: 600;
    width: var(--width);
    margin-left: calc(50% - (var(--width) / 2));
    text-align: center;
}

#ligaTabell {
    width: 60%;
    margin-left: calc(20%);
    margin-top: 2vw;
    background-color: white;
    border-radius: 2vw;
    padding: 2vw 2vw;

    columns: 1fr 1fr 1fr 1fr;
}

#ligaTabell tr {
    text-align: center;
    height: 4vw;
    font-size: 1vw;
}

.lag-display {
    padding-left: 2vw;
    display: grid;
    grid-template-columns: 5vw 1fr; 
    text-align: left;
}

.lag-img {
    margin-top: -0vw;
    height: 3.5vw;
    width: 3.5vw;
    border-radius: 2.25vw;
    background: url('../lag/lagBilder/HedenLag.svg') center center no-repeat;
    background-size: contain;
}

.lag-namn {
    margin-top: 1.25vw;
}

#column1 {
    width: 1vw;
}
#column2 {
    width: 1fr;
}
#column3, #column4, #column5, #column6 {
    width: 4vw;
}

:root {
    --toggleBoxHeight: 3vw;
}

#toggleBox {
    --width: 23vw;
    margin-left: calc(50% - (var(--width) / 2));
    margin-top: 2vw;
    width: var(--width);
    height: var(--toggleBoxHeight);
    border-radius: calc(var(--toggleBoxHeight) / 2);
    background-color: white;
}

#toggleOption1 {
    width: 50%;
    margin-left: 0;
    height: 100%;
    background-color: rgb(211, 211, 211);
    border-radius: calc(var(--toggleBoxHeight) / 2) 0 0 calc(var(--toggleBoxHeight) / 2);
    align-content: center;
    text-align: center;
    font-size: 1.5vw;
    color: rgb(31, 31, 31);
}

#toggleOption2 {
    width: 50%;
    margin-left: 50%;
    margin-top: calc(0vw - var(--toggleBoxHeight));
    height: 100%;
    background-color: rgb(255, 255, 255);
    border-radius: 0 calc(var(--toggleBoxHeight) / 2) calc(var(--toggleBoxHeight) / 2) 0;
    align-content: center;
    text-align: center;
    font-size: 1.5vw;
    color: rgb(0, 0, 0);
    cursor: pointer;
}

#matcher-container {
    padding-top: 5vw;
    margin-bottom: 10vw;
}

#title-text4 {
    --width: 70vw;
    color: white;
    font-size: 4vw;
    font-weight: 600;
    width: var(--width);
    margin-left: calc(50% - (var(--width) / 2));
    text-align: center;
    margin-bottom: 4vw;
}

.Mårten {
    width: 60%;
    height: 10vw;
    background-color: white;
    margin-left: 20%;
    border-radius: 2vw;
    margin-bottom: 2vw;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-content: center;
    align-items: center;
    text-align: center;
}

.lagGrid {
    font-size: 1vw;
    font-weight: 500;
}

.lagBild {
    --size: 6vw;
    width: var(--size);
    height: var(--size);
    border-radius: calc(var(--size) / 2);
    margin-left: calc(50% - (var(--size) / 2));
    margin-bottom: 0.6vw;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.infoGrid {
    display: grid;
    grid-template-columns: 1.5fr 10fr;
    text-align: left;
    font-size: 0.8vw;
}

.ikon1 {
    width: 1vw;
    height: 1vw;
    background: url(../images/Location.png) center center no-repeat;
    background-size: contain;
    margin-bottom: 2vw;
}

.ikon2 {
    width: 1vw;
    height: 1vw;
    background: url(../images/Date.png) center center no-repeat;
    background-size: contain;
}

.VS {
    font-size: 2.4vw;
    font-weight: 600;
}


    