* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.title {
    display: flex;
    justify-content: center;
    padding: 15px;
}

.home {
    display: flex;
    justify-content: center;
}

body {
    background-color: black;
    color: white;
}

a:link {
    color: white;
    text-decoration: none;
}

a:visited {
    color: white;
}

a:hover {
    text-decoration: underline;
}

.mainpage {
    display: grid;
    padding: 15px;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 50px 200px;
}


.mainpage .chillguy {
    display: grid;
    grid-row: 1;
    grid-column: 1;
    justify-content: center;
}

.mainpage .chillguyimg {
    display: grid;
    grid-row: 2;
    grid-column: 1;
    justify-content: center;
}

.chickenjockey {
    display: grid;
    grid-row: 1;
    grid-column: 2;
    justify-content: center;
}

.chickenjockeyimg {
    display: grid;
    grid-row: 2;
    grid-column: 2;
    justify-content: center;
}