23 lines
381 B
CSS
23 lines
381 B
CSS
|
#volume{
|
||
|
transform: rotate(270deg);
|
||
|
}
|
||
|
body {
|
||
|
width: 100vw;
|
||
|
height:100vh;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
.wrapper{
|
||
|
width:80vw;
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
.name-wrapper{
|
||
|
width:80vw;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|