
@media (max-width: 550px) { 
    body {
        margin: 0;
        background-color: #cacad1;
        width: 100vw;
        height: 100vh;
        background-size: fill;
        background-repeat: no-repeat;    
        background-attachment: fixed;
        cursor: none;
    }

    .containercontainer {
        display: none;
    }

    .header {
        display: none;
    }
    
    .footer {
        display: none;
    }

    .profilecontainer {
        display: none;
    }
}

body {
    margin: 0;
    background-color: #cacad1;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;    
    background-attachment: scroll;
    background-position: center;
    cursor: crosshair;
}


.profilecontainer {
    text-align: center;
    max-width: 400px;
    background: transparent;
    background-color: #cacad1;
    padding: 40px 40px;
    border-radius: 4px;
    display: grid;
    gap: 5px;
    grid-template-rows: auto auto auto 1fr;
    height: 100vh;
    align-self: center;
}

.containercontainer {
    margin: 0;
    padding-top: 4%;
    font-family: Arial, sans-serif;
    background: transparent;
    background-size: cover;
    background-repeat: no-repeat;    
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    color: #000000;
    cursor: crosshair;
}

.profilepic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #000000;
    margin: 0 auto;
    object-fit: fill;
  }

h1 {
    font-size: 0.8rem;
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 100;
    color: #50584d;
}

h2 {
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    color: #1a1819;
}

h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    font-size: 1.1rem;
}
  
.bio {
    font-size: 0.4rem;
    color: #50584d;
    margin: 6px;
    padding-bottom: 0%;
}
  
.links {
    display: grid;
    justify-content: center; 
    gap: 10px;
    grid-template-columns: .7fr;
    max-width: 350px;
}


.linkwebsite img,
.linkyoutube img,
.linkinstagram img,
.linkgithub img,
.linklinkedin img,
.linkpinterest img {
    width: 40px; 
    height: 40px;
    object-fit: fill;
    padding: 10px;
}
  
.linkyoutube, 
.linkinstagram,
.linkwebsite,
.linkgithub,
.linklinkedin, 
.linkpinterest {
    text-decoration: none;
    font-size: 0.8rem;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 13px; 
    display: grid;
    align-items: center; /* vertical center */
    background: #ffffff;
    color: #000000;
    padding: 0px 40px 0px 0px;
    font-weight: none;
    grid-template-columns: auto 1fr;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9); /* drop shadow */
    width: 300px;
    font-size: 0.73rem;
}

.linkinstagram {
    background-color: #ffffff;
}


.linksectiontitle {
    font-size: 0.9rem;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}




.linkyoutube:hover,
.linkinstagram:hover,
.linkwebsite:hover,
.linkgithub:hover,
.linklinkedin:hover,
.linkpinterest:hover {
    background: #2c2b2b;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9); /* drop shadow */

}


footer {
    height: 10vh;
}

