body {
    background-image: linear-gradient(to bottom,rgb(158, 16, 136) 10%,rgb(117, 156, 184),rgb(57, 151, 57) 90%);
    /*173, 173, 89 - yellow color scheme*/
    background-attachment: fixed;
    text-align: center;
    display: flex;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 20px;
}

.menuitem {
    display: block;
    position: relative;
    background-color: #a83ca1;
    padding: 20px 40px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 15px;
    font-size: 40px;
    transition: 0.3s;
    border-style: solid;
    border-color: purple;
    border-width: 5px;
    color: rgb(41, 3, 74);
}

.icon {
    position: absolute;
    right: 0.5em;
    top: 50%;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    border-radius: 20%;
}


#menu {
    border-style: dashed;
    border-color: rgb(231, 187, 231);
    border-width: 5px;
    border-radius: 40px;
}

#top {
    margin-bottom: 50px;
}

.menuitem:hover{
    background-color: rgb(168, 41, 111);
    border-color: rgb(86, 1, 86);
}

#wrapper {
    width: 700px;
}

#linklist {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 60px;
    color: rgb(206, 231, 116);
}