html {
    /* text-align: center; */
    color: #DE4D86;
    font-family: monospace, serif;
    background-color: #260040;
}

body {
    display: grid;
    overflow: hidden;
    /* avoid scrolling */
    min-height: 100vh;
    grid-template-columns: 1fr 1fr;
    margin: 0;
}

main {
    font-size: 27px;
    grid-column: 1;
    background-image: linear-gradient(#260040, #52037a, #640494);
}

main .content {
    margin: 250px 30px;
}

aside {
    grid-column: 2;
    background-color: #547AA5;
}

p {
    font-size: 17px;
    color: #7D8CC4;
}

.flex_container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* push to the right */
    gap: 7px;
    /* gap between each box */
    margin: 35px 0px;
    /* gap from the top of the screen */
}

a {
    border-radius: 10px 0 0 10px;
    width: 200px;
    background-color: #C0FDFB;
    font-family: 'Helvetica', serif;
    font-size: 20px;
    color: #DDA77B;
    font-weight: bold;
    text-decoration: none;

    text-align: right;
    padding-top: 22px;
    padding-bottom: 22px;
    padding-right: 20px;
    padding-left: 80px;
}

.link_container {
    margin-bottom: 40px;
    margin-top: 10px;
}

.button {
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -ms-transition: all 0.7s;
    transition: all 0.7s;
}

.button:hover {
    padding-left: 150px;
}

.decorative_box {
    user-select: none;
    pointer-events: none;
    position: relative;
    left: 10px;
    bottom: 10px;

    width: 5px;
    height: 5px;
    background-color: #DFBBB1;
    margin: 0;

}

/* DFBBB1 for button side */
/* https://coolors.co/640494-f2d0a9-7d8cc4 */