/* create a css reset later */

/* global styles */
body {
    font-family: 'Georgia', serif;
    background-color: #f5f1e6;
    display: flex; /*learn about flexbox*/
    justify-content: center;
    align-items: flex-start; /*look these up*/
    min-height: 100vh; /*learn about viewports*/
    margin: 0;
    padding: 30px;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}


/* Layout and Container styles */
.Floating-Page {
    background: white;
    width: 85%;
    max-width: 1000px;
    padding: 40px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5); /* floating effect */
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
}

.Header-Container {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

.Certifications {
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 2.5em;
    margin-bottom: 20px;
}

h2 {
    margin: 0;
    font-size: 1.5em;
    align-self: flex-end;
}

h3 {
    text-align: center;
    margin: 10px;
}

.Diagonal-Bar {
    width: 140px;
    height: 7px;
    background-color: blue;
    margin: 1px;
    top: 50%;
    left: 100%;
    transform: rotate(-45deg);
    transform-origin: center;
}

.Contact-Info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.Skills {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.Skills-Container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.Skille-Left, .Skille-Right {
    display: flex;
    flex-direction: column; /* stacks elements vertically instead of defaulting to inline */
}

.Skills-Left p, .Skills-Right p {
    text-align: left;
    white-space: nowrap;
}

.Project-Experience {
    text-align: left;
}

.Work-History {
    text-align: left;
}

/* Typography */

/* Buttons */

/* Media Queries */