html {
  font-size: 14px;
}
body {
    background-color: gray;
}

.headish {
    background-color: dimgray;
    border-bottom-color: #5c5c5c;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    color: white;
}

.header-text{
    color: white;
}

@media (min-width: 768px) {
    html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;

}

.container {
    margin-left: 15vw;
}

body {
  margin-bottom: 60px;
}



.left {
    width: 70vw;
    display: grid;
    background-color: dimgray;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    border-style: solid;
    border-width: 1px;
    border-color: #5e5e5e;
    margin-bottom: 13px;
}
    .left:hover {
        background-color: #636363;
    }

.name {
    grid-column: 1/1;
    grid-row: 1/1;
    margin-left: 5px;
    margin-right: 5px;
    align-self: center;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.profilepicture {
    grid-column: 2/2;
    grid-row: 1/1;
}

.gamename {
    grid-column: 3/3;
    grid-row: 1/1;
    align-self: center;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.gamepic {
    grid-column: 4/4;
    grid-row: 1/1;
}

.links {
    grid-column: 5/5;
    grid-row: 1/1;
    display: flex;
    justify-content: space-evenly;
    align-self: center;
}

.profilforklaringdiv {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 40px 1fr 1fr 1fr;
}

.profil {
    width: clamp(250px, 20vw, 1000px);
    background-color: dimgray;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 125px 1fr;
    border-style: solid;
    border-width: 1px;
    border-color: #4f4f4f;
    font-size: 17px;
    font-weight: 500;
}

.profilforklaring {
    grid-column: 3/6;
    font-size: 50px;
    font-weight: 600;
    color: white;
    justify-self: center;
    align-self: center;
}

.pfp {
    grid-column: 1 / 1;
}
.profilename {
    width: 100%;
    height: 100%;
    grid-column: 2 / 2;
    align-content: flex-start;
    justify-content: left;
    margin-left: 10px;
    color: white;
}
.games {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    margin: -1px;
    border: 1px solid #4f4f4f;
    background-color: dimgray
}

.profilegamecolumn {
    grid-column: 1 / 1;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.profiletimeplayedcolumn {
    grid-column: 3 / 3;
    border-left: solid;
    border-left-width: 1px;
    border-color: #4f4f4f;
    margin: 0;
    margin-left: 1px;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.profilegamepic {
    grid-column: 1 / 1;
}

.profilegamename {
    grid-column: 2 / 2;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.profiletimeplayed {
    grid-column: 3 / 3;
    border-left: solid;
    border-left-width: 1px;
    border-color: #4f4f4f;
    padding-left: 25px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-left: 1px;
}


.Btn {
    position: relative;
    width: 150px;
    height: 55px;
    border-radius: 45px;
    border: none;
    background-color: #708090;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
    .Btn:hover {
        background-color: #778899;
        color: white;
    }

.allaspeltext {
    color: white;
    font-size: 20px;
    font-weight: 500;
}