body, html {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
font-weight: 500;
font-style: normal;
background-image: url('../assets/background.png');
background-size: cover;
background-repeat: no-repeat;
}
.container {
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
min-height: 100vh;
}
h1 {
margin: 0;
padding: 0;
}
.main_component {
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #535C91;
opacity: 71;
padding: 2vh;
border-radius: 1rem;
box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.9);
width: 90vw;
height: 80vh;
}
.header {
color: #1B1A55;
font-size: 0.8rem;
text-align: center;
text-transform: uppercase;
}
button {
font-weight: bold;
width: 25%;
font-size: 1rem;
padding: 10px;
border: none;
border-radius: 5px;
margin-top: 20px;
cursor: pointer;
}
button:hover {
filter: brightness(85%);
}
button[name="close"] {
background-color: #2196F3;
color: white;
}