/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #a21a5c;
    font-family: Arial, sans-serif;
}
h1 {
    font-size: 16px;
    font-weight: normal;
}

.container {
    text-align: center;
    color: white;
    padding: 10px;
}

a {
  color: #ffffff;
  font-weight: bold;
}
/* Background images based on screen resolution */
body {
    background: url('images/logo-small.jpg') no-repeat center center fixed;
    background-size: contain;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    body {
        background: url('images/logo-medium.jpg') no-repeat center center fixed;
        background-size: contain;
    }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
    body {
        background: url('images/logo-large.jpg') no-repeat center center fixed;
        background-size: contain;
    }
}
