body {
    position: relative;
    background-color: white;
    background-image: url('/images/bck_purple.png');
    background-size: 100% auto;
    background-position: top center;
    font-family: 'Roboto', sans-serif;
    color: var(--darkblue);

}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

/* Styling for navigation bar and header */
header, nav {
    background-color: var(--purple);
    color: var(--darkblue);
}

main {
    padding: 20px;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 36px;
    text-align: center;
    font-weight: bolder;
    margin-bottom: 20px;
    margin-top: 20px;
}

h2 {
    font-size: 30px;
    margin-top: 40px;
}

hr {
    border: none;
    border-top: 2px solid var(--darkblue);
    margin: 10px -20px;
}
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--purple);
}

dt {
    font-size: 30px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

dt img {
    width: 50px; /* Adjust size of the image */
    margin-left: auto; /* Push the image to the right */
    border-radius: 10px;
}

button {
    font-size: larger;
    padding: 10px 20px;
    background-color: var(--purple);
    color: #fff;
    border-radius: 10px;
    width: 150px;
    height: 50px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

button:hover {
    background-color: var(--darkblue);
}

