/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
  font-family: 'Josefin Sans', sans-serif;
}

/* Body Styles */
body {
    font-family: 'Dosis', sans-serif; /* Easily change font here */
    background: url("backgr.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

/* Main Container */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    text-align: center;
}

/* Grey Strip */
.strip {
    background-color: rgba(230, 229, 207, 0.65); /* Opaque grey */
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    color: black;
}

/* Button Container */
.download-buttons {
    display: flex;
    flex-direction: row; /* Buttons side-by-side */
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-w
