 html {
    height: 100%;
    background-color: #E3D0E8;
    font-family: 'Consolas';
}

.logo {
    margin: auto;
    justify-content: center;
    display: flex;
    height: 180px;
    width: 175px;
}

.mssg {
    display: flex;
}

.arrow {
    height: 16px;
    width: 16px;
    margin: auto;
}

nav {
    padding: 30px 0px;
    width: 100%;
}

nav ul {
    list-style-type: none;
    margin: auto;
    padding: auto;
    background-color: #751a65;
    display: flex;
    justify-content: center;
}

li {
    padding: 10px;
}

ul li a {
    display: block;
    color: white;
    font-size: 20px;
    padding: 14px 200px;
    text-decoration: none;
}

ul li a:hover {
    background-color: #111111;
}

li:nth-child(even) {
    background-color: #b180bf;
}

li:nth-child(odd) {
    background-color: #e3b9ee;
}

h1 {
    font-size: 3.0rem;
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 2px solid #b180bf;
}

h3 {
    font-size: 40px;
    padding: 50px;
    text-align: center;
    border-bottom: 2px solid #b180bf;
}

.text-container p {
    font-size: 24px;
    font-weight: bold;
    font-style: italic;
    padding-bottom: 30px;
    border-bottom: 2px solid #b180bf;
}

p {
    font-size: 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: space-evenly;
    max-width: 40%;
    margin: auto;
}

.linkedin {
    height: 70px;
    width: 70px;
}

.linkedin:hover {
    height: 80px;
    width: 80px;
    opacity: 0.8;
}

.cv {
    height: 80px;
    width: 80px;
}

.cv:hover {
    height: 90px;
    width: 90px;
    opacity: 0.8;
}

.github {
    height: 80px;
    width: 80px;
}

.github:hover {
    height: 90px;
    width: 90px;
    opacity: 0.8;  
}

table {
    border: 2px solid #751a65;
    border-collapse: collapse;
    margin: auto;
    margin-bottom: 60px;
    width: 60%;
}

th,td {
    padding: 15px;
    font-size: 22px;
    border-width: 2px;
}

tr:nth-child(odd) {background-color: #bf69af;}

tr:nth-child(even) {background-color: #e5cceb;}

footer {
    padding-top: 100px;
    padding-bottom: 50px;
}

footer p {
    font-size: 14px;
    text-align: center;
    color: darkslategrey;
}