#info {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    justify-self: right;
    background-image: url("../resources/icons/info_button.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

body {
    margin: 0;
    height: 100vh;
    display: grid;
    grid-template-rows: 1fr 5fr 1fr;
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    position: relative;
}

#infoBox {
    height: 212px;
    width: 180px;
    background-color: white;
    position: absolute;
    right: 30px;
    z-index: 1;
    border-radius: 10px;
    top: 30px;
    display: none;
    padding: 4px;
}

#infoBox.show {
    display: block;
}

.list {
    font-size: 10px;
    line-height: 15px;
    margin: 10px;
    text-align: start;
    margin: 16px;
    letter-spacing: 1px;
}

#textDecoration {
    height: 1px;
    width: 142px;
    background-color: #d5d5d5;
    text-align: center;
    position: relative;
    left: 15px;
}

.buttonContainerJoinStart {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    margin-top: 10vh;
}

.inputContentContainer {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    margin-top: 2vh;

    & button {
        margin: 3vh auto 0 auto;
    }
}

.spaceAround {
    justify-content: space-around;
}

#box {
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1vw;

    & h3 {
        margin-top: 3vh;
    }

    & .wrapper {
        display: flex;
        flex-direction: column;
        width: 60vw;
        max-width: 250px;
        margin-top: 30px;
        gap: 5px;
    }

    & label {
        text-align: left;
        font-size: 16px;
    }

    & input {
        height: 50px;
        border-radius: 10px;
        font-size: 20px;
        color: #B8B1AA;
        letter-spacing: 2px;
        outline-style: solid;
    }


    & #joinBtn {
        margin-top: 8vh;
        background-color: var(--salmon1-color);
    }
}

.inputUserName {
    width: 72vw;
    font-size: 19px;
}

.inputNames {
    padding-left: 15px;
}

input::placeholder {}



.labelName {}


.inputContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.serverCode {
    width: 50px;
    text-align: center;
}

.startpageButton {
    width: 70vw;
    max-width: 400px;
}



#img {
    width: 372px;
    /*  max-width: 372px; */
    height: 212px;
    /*  max-height: 212px; */
    background-image: url("../resources/Logga_main_small_height.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 22vh;
    width: 90vw;
    margin-top: 10vh;
}

#start {
    background-color: #EE7668;
    color: white;
    border-radius: 10px;
}

#join {
    background-color: #FCC2B6;
    color: white;
    border-radius: 10px;
}

h1 {
    letter-spacing: 10px;
    font-size: 17px;
    font-family: "Helvetica Neue Regular";
}

#gameInfo {
    text-align: center;
    max-width: 73vw;
    line-height: 30px;
    letter-spacing: 2px;
    font-size: 2vh;
    margin-top: 7vh;
}

#infoTitle {
    letter-spacing: 2px;
    position: relative;
    left: 16px;
    font-size: 11px;
    margin-bottom: 5px;
}

button {
    letter-spacing: 5px;
    padding: 10px;
    border: none;
    border-radius: 10px;
}

#infoIMG {
    background-image: url("../resources/info.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*Kategorier*/

h3 {
    margin: 0;
}

#categoryWrapper {
    height: 50vh;
    width: 80vw;
}

.categoryCard {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    border: white solid 2px;
    height: 8.5vh;
    padding: 15px;
}



.categoryCard:hover {
    border: black solid 2px;
    cursor: pointer;
}

.categoryTextBox {
    display: flex;
    flex-direction: column;
    padding-left: 4vw;
    width: 60vw;
}

.categoryTextBox>h3 {
    margin: 0;
}

@media (min-width: 700px) {
    body {}

    #img {}

    #gameInfo {
        max-width: 60vw;
        line-height: 4vh;
    }

    #start {
        width: 44vw;
        bottom: 19vh;
    }

    #join {
        width: 44vw;
    }

    #joinBtn {
        width: 35vw;
    }

    .buttonNext {
        width: 35vw;
    }

    .inputUserName {
        width: 32vw;
    }

    .labelName {
        right: 8vw;
    }
}