body {
  background-image: url("bg-tile.png");
  color: white;
  font-family: Verdana;
}

h1{
    font-size: 75px;
}

.container {
    display: grid;
    grid-template-rows: 100px 200px repeat(10, 100px);
    grid-template-columns: 1fr minmax(200px, 3fr) 1fr;
}

.welcome{
    grid-row: 2;
    grid-column: 2;
    border: 5px solid white;
    background-color: #232325;
    display: flex;
    justify-content: center;
    align-items: center;

}

.mainbit{
    grid-row: 4/ span 6;
    grid-column: 2 / span 1;
    border: 5px solid white;
    background-color: #232325;
}

.anothercontainer{
    box-sizing: border-box;
    padding: 15px;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
}

.imagecontainer{
    grid-row: 1 / span 2;
    grid-column: 3;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.image{
    display: block;
    border: 2px dashed white;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.paragraph-stuff{
    padding: 10px;
    grid-row: 1 / span 2;
}

