body {
    background-image: url('bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 95vh;
}

ul {
    background-color: #00000088;
    color: white;
    padding: 5px 20px 20px 20px;
    border-radius: 5px;
}

li {
    margin-top: 20px;
    font-size: 18px;
    list-style: none;
}

h1 {
    color: white;
    font-size: 40px;
}

a {
    background-color: black;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.title {
    font-weight: bold;
    font-size: 22px;
}

@media screen and (max-width: 768px) {
    body {
        height: 95vh;
    }

    ul {
        padding: 5px 10px 10px 10px;
    }

    li {
        font-size: 16px;
    }

    h1 {
        font-size: 32px;
    }

    a {
        padding: 15px 30px;
        font-size: 18px;
    }

    .title {
        font-size: 20px;
    }
}