﻿body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(20,1fr);
    background-image:url("../bilder/curtains.jpg");
    background-position:center;
    background-size:cover;
    overflow:hidden;
}

#title {
    grid-row: 1/3;
    grid-column: 1/11;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-family: "Rubik Mono One", monospace;
    font-weight: 800;
    font-style: normal;
    font-size:3vw;
}

.box {
    grid-row: 4/19;
    grid-column: 3/9;
    display: grid;
    grid-template-columns:1fr 10%;
    grid-template-rows: repeat(25,1fr);
    color:white;
    background-color:#00000094;
    font-size:20px;
    overflow:scroll;
    border: 5px solid black;
    border-radius:5px;
}

p {
    font-family: "Rubik Mono One", monospace;
    font-weight: 200;
    font-style: normal;
    font-size: 1vw;
    border-bottom: 1px dotted white;
    display: flex;
    align-items: center;
}

#name {
    grid-row: 3/4;
    grid-column: 3/6;
   
    text-align: left;
    color: #ff0000; 
   
}

#rate {
    grid-row: 3/4;
    grid-column: 6/9;
    text-align: right;
    color: #e4bd37;
}

h3 {
   
    font-family: "Rubik Mono One", monospace;
    font-weight: 800;
    font-style: normal;
    font-size: 1.6vw;
}