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;*/
}
/*
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background-color: #333;
    color: white;
    font-family: Comfortaa, sans-serif;
}
*/
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #333; /* Dark grey background */
    color: white; /* White text color */
    font-family: Comfortaa, sans-serif;
}

.text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #333; /* Dark grey background *//*
    color: white; /* White text color */
}

.titolo {
    font-family: Anton;
    text-align: center;
    font-size: 75px;
/*    text-transform: uppercase; */
    color: #000;
}

.container {
    display: flex;
    flex-direction: column;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
    /*height: 100%;*/
}

.canvasContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 50px;
    overflow: hidden;
}

.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: flex; /* 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;
}


ul {
    list-style: none;
}


.inputList {
    display: inline-block;
    margin-right: 10px; /* add spacing between items */
}

.linkList {
    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%;
    transition: transform .3s;
}
.logos:hover {
    cursor: pointer;
    transform: scale(1.4);
}


.plot-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 900px) {
  .plot-image {
    max-width: 900px;
    margin: 0 auto;
  }
}




.footer {
    width: 100%;
    padding: 20px;
    text-align: center;
    background: #222; /* Dark grey background */
    margin-top: 20px; /* Add some top margin to separate the footer from content */
}