* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'EB Garamond', Garamond, serif;
}

html {
    height: 100%;
}

body {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    padding: 20px 0;

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page {
    width: 210mm;
    min-height: 250mm; 
    background-color: white;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex;      
    flex-direction: column; 
    animation: fadeInUp 0.5s ease-out;
    zoom: 0.9;
}


.section {
    display: flex;
    flex-direction: column;
    margin-top: 14px;
}

.secDeets{
    display: flex;
    flex-direction: column;
}

.certSec{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.headerr {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headerr p {
    font-size: 20px;
}

.secHead h2 {
    border-bottom: 1px solid black;
    font-size: 14px;
}

.title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 7px;
}

.title h3{
    font-size: 14px;
}

.leftDiv ul{
    margin-left: 20px;
    width: auto;
}

.leftDiv h3{
    font-size: 14px;
}

.rightDiv{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.rightDiv h3{
    font-size: 14px;
}

.lowerDeets li, ul {
    margin-left: 10px;
    font-size: 14px;
}

.secDeets li, ul {
    margin-left: 10px;
    font-size: 14px;
}

.lowerDeets p {
    font-size: 14px;
}

footer {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#counterr {
    font-weight: bold;
}

#name {
    font-size: 25px;
}

#subHeader {
    font-size: 15px;
}

.stack {
    font-weight: normal;
    font-style: italic;
}

.deets {
    font-weight: normal;
}

.skill {
    margin-top: 0 !important;
}