* {
    padding: 0px;
    margin: 0px;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    box-sizing: border-box;
    width: 900px;
    flex-wrap: wrap;
}

.page {
    width: 200px;
    height: 200px;
    margin: 20px;
    background-color: rgba(2, 107, 2, 0.938);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-items: center;
    align-items: center;
    overflow: visible;
    box-shadow: 0px 8px 16px 5px rgba(0, 0, 0, 0.3);
}

.horizon {
    width: 200px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.842);
    color: white;
    border-radius: 30px;
}

.horizon>a {
    text-decoration: none;
    margin-top: 10px;
    padding: 10px 5px 0px 5px;
}