* {
    font-family: sans-serif;
    
}

html {
    background-color: #12033C;
    color: #FFFFFF;
    height: 100%;
    font-size: 18px;
}

nav {
    text-align: center;
    font-size: 20px;
    padding: 20px;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 3%;
}

nav .clickable:hover {
    color: #CAE9FD;
    cursor: pointer;
    font-weight: bolder;
    font-size: 22px;
}

nav a b {
    font-weight: bolder;
    font-size: 22px;
    color: #CAE9FD;
}

header {
    text-align: center;
    font-size: 28px;
    letter-spacing: 0.5px;
}

footer {
    font-size: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.purple-title {
    color: #CAE9FD;
    text-align: center;
}

.home-name {
    font-size: 54px;
    letter-spacing: 0.5rem;
}

.home-name h1 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.home-name p {
    font-size: 28px;
    margin: 10px;
    letter-spacing: 0.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    width: 400px;
    border-radius: 50%;
    border: 4px solid #CAE9FD;
    gap: 2rem;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin: 0.5rem;
}

.about-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 20px;
    padding-right: 200px;
}

.hover-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 850px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.home-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.hover-button {
    position: relative;
    width: 250px;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.hover-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hover-button .label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    text-align: center;
    padding: 10%;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.75);
    transition: opacity .25s ease, transform .25s ease;
    opacity: 0;
    transform: translateY(6%);
}

.hover-button:hover .label, .hover-button:focus-visible .label {
  opacity: 1;
  transform: translateY(0);
}

.hover-button .label strong {
    font-size: 0.75rem;
}

.hover-button .label small {
    font-size: 0.5rem;
    opacity: 0.95;
}

.hover-button:focus-visible {
    outline: 3px solid #CAE9FD;
    outline-offset: 4px;
    border-radius: 99px;
}

.hover-button:hover {
    transform: translateY(-4px);
}

.socials {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.socials h2, .contact-form h2 {
    font-size: 28px;
    margin: 10px;
    text-align: center;
    font-weight: 1;
}

.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
   
}

.socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
}

.socials button, .socials a {
    background: transparent;
    width: 140px;
    height: 140px;
    color: rgba(255, 255, 255, 1);
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.socials button img, .socials a img {
    width: 80px;
    height: 80px;
}

.contact-form h2 {
    margin: 10px;
    margin-top: 45px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-form input, .contact-form textarea, .contact-form button {
    width: 15%;
    border: #CAE9FD 2px solid;
    border-radius: 5px;
    margin: 10px;
    background: #12033C;
    color: #FFFFFF;
    resize: none;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #FFFFFF;
    opacity: 0.7;
}

.contact-form button {
    cursor: pointer;
}

.resume-main {
    display: flex;
    justify-content: center;
    flex-direction: row;
    font-size: 10px;
}

.resume-short-list, .resume-list-with-details {
    width: 29%;
    margin-left: 2%;
    margin-right: 2%;
}

.resume-main h2 {
    font-size: 30px;
    text-align: center;
    letter-spacing: 0.1rem;
}

.resume-main h3 {
    font-size: 15px;
    text-align: center;
}

.resume-main p {
    font-size: 12px;
}

.resume-short-list li {
    margin: 10px;
    text-align: left;
    font-size: 12px;
}

.resume-sub-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resume-short-list {
    width: 100%;
}

.date {
    font-style: italic;
    text-align: center;
}

@media  (max-width: 900px) {
    .about-section {
        display: flex;
        flex-direction: column;
    }
    .about-text {
        padding: 5px;
    }
    .resume-main h2 {
        font-size: 18px;
    }
    .resume-main h3 {
        font-size: 14px;
    }
    .resume-main p {
        font-size: 10px;
    }
    .home-name {
        font-size: 36px;
        letter-spacing: 0.3rem;
    }
    nav {
        font-size: 12px;
        padding: 5px;
    }
    nav .clickable:hover, nav a b {
        font-size: 12px;
    }
}