@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
}
body {
    background-color: #133149;
    color: #ffffff;
}
a {
    color: white;
}
.cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
}
.mobile {
    display: none;
    margin-top: 40px;
}
.col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.col p,
.col pre {
    padding: 30px;
    margin-top: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.img {
    background-image: url('https://www.sdhub.it/assets/img/desktop.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
@media (max-width: 900px) {
    .cols {
        grid-template-columns: 1fr;
    }
    .col {
        padding-bottom: 50px;
    }
    .logo {
        padding-top: 20px;
    }
    .mobile {
        display: flex;
    }
    .img {
        display: none;
    }
    .contact.last {
        margin-bottom: 120px;
    }
}