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

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


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


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

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

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

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

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

a:visited {
    color: white;
}

a:hover {
    text-decoration: underline;
}