body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: Arial, sans-serif;
}
body {
background: url('images/background.png') no-repeat center center fixed;
background-size: cover;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.logo {
margin-top: 80px;
}
.logo img {
max-width: 100%;
height: auto;
}
.text-box {
max-width:60%;
background-color: #f0f0f0;
color: black;
padding: 20px;
border-radius: 10px;
margin: 20px 0;
text-align: center;
font-style: italic;
}
.button-container {
margin-bottom: 180px;
display: inline-block;
}
.button {
padding: 15px 30px;
font-size: 16px;
color: white;
background-color: rgb(33, 103, 120);
border: none;
border-radius: 15px;
cursor: pointer;
text-decoration: none;
}
.button:hover {
background-color: rgb(120, 50, 33);
}
