@import url('../elements/nav-bar.css');
@import url('../elements/web-bg.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family:'Courier New', Courier, monospace;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

section {
    min-height: 100vh;
    padding: 6rem 12% 6rem;
}

.home-img {
    position: relative;
    width: 400px;
    border-radius: 50%;
    box-shadow: 0 0 25px solid;
}

.home {
    display:flex;
    justify-content: center;
    align-items: center;
    gap:8rem;
}

.home .content h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}

span {
    color: white;
}

.content h3 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacts a {
   display: inline-flex; 
   justify-content: center;
   align-items: center;
   width: 4rem;
   height: 4rem;
   background-color: transparent;
   border: 0.2rem solid white;
   font-size: 2rem;
   border-radius: 50%;
   margin: 3rem 1.5rem 3rem 0;
   transition: 0.3s ease;
   color: white;
}

.contacts a:hover {
    color: white;
    transform: scale(1.1) translateY(-5px);
    background-color: white;
    box-shadow:0 0 25px white;
}

.desc_column {
    font-size: 16px;
}

.link {
    text-decoration: underline;
    color: white;
}

.resume_column {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 16px;
}

.resume_column a {
    color: white;
    text-decoration: underline;
}

.pdf-icon{
    width: 6rem;
    height: 6rem;
    transition: 0.3s ease;
}

.pdf-icon:hover {
    transform: scale(1.1) translateY(-5px);
    cursor: pointer;
}

.pdf{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resume_link {
    transition: 0.3s ease;
}

.resume_link:hover {
    color: rgb(238, 162, 204);
    text-decoration: underline;
}

.copyright {
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

div.copyright {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}