html {
background-color: #303030;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: larger;
color: aliceblue;
}
body {
margin: 0;
padding: 0;
}
.topnav {
background-color: #222;
overflow: hidden;
margin: 0;
position: sticky;
top: 0;
height: 5vh;
width: 100%;
line-height: 5vh;
}
.topnav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.topnav li {
display: inline;
}
.topnav a {
display: block;
float: right;
color: aliceblue;
text-align: center;
padding: 0vh 1.5vw;
text-decoration: none;
font-size: medium;
margin: 0;
height: 6vh;
}
.topnav a:hover {
background-color: #191970;
}
.active {
background-color: #2727af;
}
.main-content {
padding: 10vh 20vw;
overflow: hidden;
}
.intro {
text-align: center;
}
.pc {
margin: 10vh 0;
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.pc-picture {
float: right;
height: fit-content;
width: fit-content;
}
.pc-picture img {
width: auto;
height: 40vh;
padding-left: 3vw;
}
.pc-text {
text-align: center;
float: left;
}
.resume-text {
text-align: center;
}
.buttons {
width: 50vw;
margin: auto;
text-align: center;
}
.btn {
font-size: 16px;
font-weight: 500;
text-decoration: none;
padding: 12px 35px;
margin: 3vh 5vw;
color: aliceblue;
border-radius: 40px;
display: inline-block;
white-space: nowrap;
border: none;
background: #2727af;
transition: all 0.3s ease;
}
.btn:hover {
transform: scale(1.05);
background: #191970
}