Revela-Frontend/public/import.css

75 lines
No EOL
1.2 KiB
CSS

@import url("https://fonts.bunny.net/css?family=abril-fatface:400|rubik:600,800i,900i");
body {
font-family: Abril-Fatface, Rubik;
margin: 0;
background: #111;
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Styles for the container */
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
/* Styles for the image */
.image {
max-width: 300px;
}
/* Styles for the paragraph */
.paragraph h2 {
color: white;
margin-top: 25px;
text-align: center;
}
/* Styles for the buttons */
.buttons {
display: flex;
justify-content: center;
margin-top: 5px;
}
.buttons button {
margin: 0 10px;
}
/* Styles for the search bar */
.search-bar {
margin-top: -20px;
text-align: center;
}
/* Styles for Ad Banner */
.ad-banner {
display: flex;
justify-content: center;
align-items: center;
margin-top: 10px; /* Adjusted margin-top */
/* margin-bottom: -200px; */
}
.ad-banner img {
width: 512px;
height: 64px;
border-radius: 10px; /* Rounded corners */
}
/* Styles for the footers */
.footer {
display: flex;
justify-content: center;
align-items: center;
height: 60px;
background-color: #f5f5f5;
width: 100%;
position: fixed;
bottom: 0;
}