/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
  position: absolute;
  /*top: 50%;*/
  left: 50%;
  transform: translate(-50%);
    text-align: center;
    color: white;
    padding: 50px;
}
.normaltext {
  text-align: justify;
}

a {
  color: #ffffff;
  font-weight: bold;
}

/* Background images based on screen resolution */
body {
    background: url('images/bg-small.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: #a21a5c;
}

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

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