48 lines
714 B
CSS
48 lines
714 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&display=swap');
|
|
|
|
body {
|
|
background-color: #1a1b26;
|
|
}
|
|
p, h1, h2, h3, h4 {
|
|
|
|
font-family: Google Sans Code;
|
|
color: #1a1b26;
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
.intro-div{
|
|
|
|
background-color: #2ac3de;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 50%;
|
|
text-align: center;
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
margin-top: 5%;
|
|
|
|
}
|
|
|
|
.centered-div{
|
|
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 50%;
|
|
text-align: center;
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
margin-top: 5%;
|
|
|
|
}
|
|
|
|
|
|
.profile-picture{
|
|
|
|
|
|
border-radius: 100px;
|
|
max-width: 25%;
|
|
|
|
|
|
}
|