* {
    font-family: 'Cardiff', sans-serif;
}

body {
    display: flex;
    flex-direction: row;
    justify-content: center;
  	gap: 1rem;
    flex-wrap: wrap;

    /* background: radial-gradient(rgb(75, 75, 167), rgb(0, 0, 0)); */
    background: radial-gradient(rgb(122, 51, 124), rgb(16, 16, 88));

    height: 100%;
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 2%;
    color: white;
    text-align: center
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px;
}

.row-wrapper {
    display: flex;
    align-items: flex-start;

}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 10px;
    margin: 10px;

    border-radius: 20px;
    border-color: #dd3dfd;
    border-style: solid;
    border-width: 1px;
    background: linear-gradient(rgb(255, 239, 239), rgb(133, 86, 126));
}

.column>div {
    display: flex;
    justify-content: center;
    width: fit-content;
}

img {
    width: 180px;
    height: auto;
    margin: 5px;
}

p {
    color: white;
    text-align: center;
}

.button {
    width: 100px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #58154a;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    margin-bottom: 10px;
    text-align: center;
}

.button:hover {
    background-color: #992680;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

a {
    margin: 10px;
}