/* styles.css */
body {
    font-family: Arial, sans-serif;
}

#fortune-container {	
	width: 250px;
	height: 160px;
    text-align: center;
    margin-top: 0px;
	margin-left: 0px;
    background: url('../images/what-is-luck.png') no-repeat fixed center;
}

#grad1 {
  height: 160px;
  background-color: #cccccc;
  background-image: linear-gradient(red, yellow, green);
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
	background-color: #1e73be;
	color:#FFF;
	margin-top: 40px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #480078;
    color: #fff;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
	max-height: 260px;
    overflow: auto;
    background-color: #480078;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #480078;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
	max-height: 180px;
    text-align: center;
	color: #FFF;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100px;
    height: auto;
}