23 lines
424 B
CSS
23 lines
424 B
CSS
.wallpaper {
|
|
width: 100%;
|
|
height: 520px;
|
|
border-radius: 17px;
|
|
background-color: #000;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
padding: 26px 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
}
|
|
|
|
.buttons-container {
|
|
width: fit-content;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 18px;
|
|
}
|