@font-face {
    font-family: 'rainy';
    src: url(/rainyhearts.ttf);
}

@font-face {
    font-family: 'made';
    src: url(/Mademoiselle.ttf);
}

body {
    background-image: url(main-background.png);
    font-family: 'rainy';
}

h1 {
    margin: 0;
}

#inside {
    background-color: white;
}

.parent {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(5, 1fr);
grid-column-gap: 10px;
grid-row-gap: 5px;
height: 100%;
}

.div1 {
    grid-area: 1 / 2 / 3 / 5;
    border: 15px solid transparent;
    border-image: url(main-border.png) 16 fill round;
}
.div2 {
    grid-area: 3 / 2 / 6 / 3;
    background-color: #eeffd3;
    border: 1px solid #b9ca9e;
    border-radius: 20px;
    padding: 10px;
}
.div2 h1 {
    text-align: center;
    color: #fff;
    font-family: 'made';
    text-shadow: -1px -1px 0 #b9ca9e, 1px -1px 0 #b9ca9e, -1px 1px 0 #b9ca9e, 1px 1px 0 #b9ca9e;
}

.div2 ul {
    list-style-type: none;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.div2 li {
    background-color: white;
    margin-bottom: 5px;
    padding: 5px;
    border: 1px dashed #b9ca9e;
}

.div2 a, a:visited {
    text-decoration: none;
    color: #b9ca9e;
}

.div2 li:hover, li a:hover {
    background-image: linear-gradient(90deg, #b9ca9e, transparent);
    background-color: transparent;
    color: #fff;
}
.div2 li:hover {
    border-style: solid;
}
.div3 {
    grid-area: 3 / 3 / 6 / 5;
    background-color: #fff;
    border: 1px solid #b9ca9e;
}