@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body{
    background-color: hsl(46, 1%, 54%);
    font-family: "Inter";
    font-weight: 400;
    cursor: default;
}

::selection {
    background: #0000003e;
    color: #484848;
}

::-moz-selection {
    background: #0000003e;
    color: #484848;
}

.iconimage{
    border-radius: 9px;
}

p{
    color: whitesmoke;
}

h1{
    font-family: "Inter";
    font-weight: 400;
    color: whitesmoke;
}

.h1{
    color: gainsboro;
}

.copy{
    color: lightgray;
    text-decoration:none;
}

.under{
    text-decoration:underline;
}

.twitter, .email{
    padding: 1px 4px;
    background-color: rgba(255, 255, 255, 0.117);
    color: rgba(255, 255, 255, 0.736);
    border-radius: 3px;
    transition: 0.2s;
    text-decoration: none;
}

.twitter:hover{
    padding: 1px 4px;
    background-color: rgba(3, 3, 3, 0.776);
    color: whitesmoke;
    border-radius: 3px;
    cursor: pointer;
}

.email:hover{
    padding: 1px 4px;
    background-color: rgba(29, 106, 240, 0.949);
    color: whitesmoke;
    border-radius: 3px;
    cursor: pointer;
}

button{
    appearance: none;
    background-color: #fafbfc;
    border: 1px solid rgba(27, 31, 35, 0.15);
    border-radius: 6px;
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    color: #24292E;
    cursor: pointer;
    display: inline-block;
    font-family: "Inter";
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    list-style: none;
    padding: 6px 16px;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: break-word;
    transition: 0.2s;
}

button:hover{
    transform: rotate(-5deg);
}

/*pisizionamento*/
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    max-width: 1250px; /* Imposta la larghezza massima del contenitore */
    margin-left: auto; /* Centra il contenitore a sinistra */
    margin-right: auto; /* Centra il contenitore a destra */
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


@media (max-width: 639px) {
    .container {
        max-width: none;
        margin-top: 40px;
        margin-right: 10px;
        display: flex;
        flex-direction: column-reverse; /* Inverte l'ordine degli elementi */
    }
    .image, .content {
        width: 100%; /* Assicura che occupino l'intera larghezza */
    }
    .image {
        margin-top: 20px;
    }
    .content {
        text-align: left; /* Allinea il testo a sinistra */
        padding-left: 30px; /* Aggiunge un po' di spazio a sinistra */
    }
}

/* Resto del CSS rimane invariato */


