* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Roboto', sans-serif;
}

.links_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.links_container a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 65px;
    color: white;
    font-size: 23px;
    font-weight: 300;
    margin: 15px 30px;
    border-radius: 10px;
}

.links_container .xv_years {
    background: -webkit-linear-gradient(to left, #ee9ca7, #ffdde1);
    background: linear-gradient(to left, #ee9ca7, #ffdde1);
}

.links_container .wedding {
    background: -webkit-linear-gradient(to left, #d69742, #ffee9a);
    background: linear-gradient(to left, #d69742, #ffee9a);
}

.links_container .party {
    background: -webkit-linear-gradient(to left, #7f7fd5, #86a8e7, #91eae4);
    background: linear-gradient(to left, #7f7fd5, #86a8e7, #91eae4);
}

.links_container .christening {
    background: -webkit-linear-gradient(to left, gray, gainsboro);
    background: linear-gradient(to left, gray, gainsboro);
}