body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #333; /* Dark grey background */
    color: white; /* White text color */
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.profile-pic {
    width: 450px; /* Width of the frame */
    height: 600px; /* Height of the frame, making it rectangular */
    overflow: hidden; /* Ensures no part of the image spills out of the frame */
    border-radius: 20px; /* Adjusted for rounded corners */
    display: block; /* Center the image horizontally and vertically */
    justify-content: center;
    align-items: center;
    background-color: #555; /* Background color visible if the image doesn't cover the whole frame */
}

.profile-pic img {
    width: 100%; /* Ensure the width is fully covered */
    height: 100%; /* Ensure the height is fully covered */
    object-fit: cover; /* This will cover the area without distorting the image but will crop it */
}

.description {
    width: 60%;
    text-align: center;
}

/*.click{
	transition: transform .3s;
}

.click:hover{
	cursor: pointer;
	transform: scale(1.40);
}
*/
ul {
    list-style: none;
}

li {
    display: inline-block;
    margin-right: 10px; /* add spacing between items */
}


.logos {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    /*background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;

    background-color: rgb(5, 6, 45);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;*/


    transition: transform .3s;
}
.logos:hover {
    cursor: pointer;
    transform: scale(1.4);
}

.logos:focus {
    box-shadow: rgba(151, 65, 252, 0.4) 0 0 8px 3px; /* Highlight focus */
  }

.footer {
    padding: 20px;
    text-align: center;
    background: #222; /* Dark grey background */
    margin-top: 20px; /* Add some top margin to separate the footer from content */
}

.canvas-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-style: double;
    outline: white 10px solid;
}