web-page/css/style.css

57 lines
1.0 KiB
CSS

@font-face {
font-family: ProblematicPiercer;
src: url(../css/ProblematicPiercer.ttf);
}
@font-face {
font-family: Caveat;
src: url(../css/Caveat-Regular.ttf);
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
flex-direction: column;
color: #333333;
margin: 0;
opacity: 0;
font-family: ProblematicPiercer;
}
div.row {
display: flex;
flex-direction: row;
width: 900px;
}
div.photo {
border-radius: 300px;
box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
background-image: url(../images/favicon.jpg);
width: 300px;
height: 300px;
background-size: contain;
margin-right: 20px;
}
div.info {
display: flex;
width: 600px;
flex-direction: column;
}
div.title {
font-size: 50px;
display: flex;
align-items: center;
justify-content: center;
}
div.bio {
font-family: Caveat;
font-size: 25px;
text-align: justify;
}