39 lines
480 B
CSS
39 lines
480 B
CSS
|
p {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.main {
|
||
|
color: #ffffff;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
background-color: #1b171f;
|
||
|
width: 1200px;
|
||
|
height: 600px;
|
||
|
}
|
||
|
|
||
|
.contents {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.info {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
width: 800px;
|
||
|
gap: 10px;
|
||
|
}
|
||
|
|
||
|
.graphics {
|
||
|
display: flex;
|
||
|
justify-content: flex-end;
|
||
|
align-items: flex-start;
|
||
|
width: 240px;
|
||
|
}
|
||
|
|
||
|
.graphics > img {
|
||
|
border-radius: 100%;
|
||
|
width: 120px;
|
||
|
height: 120px;
|
||
|
}
|