html, body {
    margin: 0;
    height: 100%;
    width: 100%;
    background: #dadada;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

h1 {
    margin: 0 auto;
    padding: 10px 20px;
    font-family: 'Montserrat';
    width: calc(100% - 40px);
    background: #200d69;
    color: #fff;
    text-align: center;
}

.links-image {
    margin: 60px auto;
    display: flex;
    align-items: center;
}

.links-image img {
    width: 200px;
    border-radius: 50%;
}

.links-list {
    display: flex;
    flex-direction: column;
}

.links-list a {
    text-align: center;
    text-decoration: none;
    background: #200d69;
    color: #fff;
    border-radius: 8px;
    padding: 8px 20px;
    min-width: 200px;
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 20px;
    cursor: pointer;
}
