@font-face {
    font-family: 'made';
    src: url(/Mademoiselle.ttf);
}
@font-face {
    font-family: 'rainy';
    src: url(/rainyhearts.ttf);
}

body {
    background-color: black;
}

#content {
    border: 3px solid rgb(255, 0, 98);
    width: 500px;
    height: 300px;
    overflow: auto;
    color: white;
    font-family: 'rainy';
    padding: 10px;
    margin: 20px;
}

.content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    margin-top: 20px;
}

h1 {
    background-color: rgb(255, 0, 98);
    font-family: 'made';
    margin: -10px;
    margin-bottom: 20px;
    color: black;
    position: sticky;
    top: -10px;
}

i {
    font-family: 'made';
    color: rgb(255, 0, 98);
}

a, a:visited {
    color: rgb(255, 0, 98);
}

a:hover {
    color: black;
}

#content::-webkit-scrollbar {
    width: 10px;
}

#content::-webkit-scrollbar-thumb {
    background-color: rgb(255, 0, 98);
}

#container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 70%;
}