body{
    background-color: rgb(35, 35, 35);
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, 'SF Pro';
}

.card{
    background-color: rgb(50, 50, 50);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
}

.card img{
    width: 100px;
    height: auto;
}

.card p{
    font-size: 20px;
}

.container{
    display: flex;
    flex-direction: unset;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.container h2{
    text-align: left;
}

.textbox{
    background-color: rgb(50, 50, 50);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    font-size: 20px;
}

.platforms img{ 
    width: 58px;
    height: auto;
}

header{
    display: flex;
    flex-direction: row;
    align-items: center;
}

header img{
    padding-right: 50px;
}

button {
    background-color: rgb(200, 0, 0);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    min-width: 180px;
    font-size: 20px;
    margin: 0 auto;
    gap: 12px;                   /* spazio tra img e testo */
    transition: 
        background-color 0.2s,
        transform 0.1s,
        box-shadow 0.2s;
}

button img {
    width: 50px;
    height: auto;
    margin-right: 8px;
    display: block;
}

button:hover {
    background-color: rgb(170, 0, 0);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 4px 16px rgba(255,0,0,0.2);
}

button:active {
    background-color: rgb(180, 0, 0);
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(255,0,0,0.15);
}

button a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    gap: 8px;
}

button a img {
    margin-left: 8px;
    vertical-align: middle;
    width: 24px;
    height: 24px;
}



.download-buttons {
    display: flex;
    gap: 16px; /* Spazio tra i pulsanti */
    flex-wrap: wrap; /* Va a capo se lo schermo è piccolo */
    margin-bottom: 16px;
}

select{
    background-color: lime;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 18px;
}

.os-selection{
    display: flex;
    margin-left: 10px;
}

.os-selection img{
    height: auto;
}

a {
    text-decoration: none;
    padding-top: 20px;
}

/* Navbar stile base */
/* filepath: /Users/checkm8/Desktop/Projects/HTML/Checkm8ra1n.github.io/Virtualization/styles.css */
.navbar {
    width: 100%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 32px;
    box-sizing: border-box;
    margin-bottom: 18px;
    border-bottom: 2px solid #0f0;
}

.navbar-logo img {
    height: 40px;
    vertical-align: middle;
}

.navbar-links {
    display: flex;
    gap: 24px;
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: #0f0;
}

li {
    font-size: 20px;
}

.command{
    background-color: rgb(40, 40, 40);
    border-radius: 30px;
    padding: 10px;
    margin: 10px;
}

code {
    background-color: rgb(60, 60, 60);
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    color: rgb(0, 173, 208);
}

a{
    color: lightblue;
}