@charset "utf-8";
/* CSS Document */
body, html {
  min-height: 100vh;
  background-attachment: url(img/img-web2.jpg);
  backgroun-repeat: no-repeat;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  padding: 0
}

/* Alert Styling */
        .alert {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.4);
        }

        .alert-content {
            background-color: rgba(0, 0, 0, 0.85);
            margin: 15% auto;
            padding: 30px;
            border: 0px solid #888;
            width: 40%;
			border-radius: 1rem 1rem 1rem 1rem;
        }

        .close {
            color: rgba(84, 82, 74, 0.9);
            float: right;
            font-size: 35px;
            font-weight: bold;
			position: relative;
        }

        .close:hover,
        .close:focus {
            color: white;
            text-decoration: none;
            cursor: pointer;
        }
