/* General styles */
h1 {
    text-align: center;
    font-size: 60px;
    color: slategrey;
   
}

body {
    background-color: var(--background-color, black);
    font-family: var(--font-family, Arial);
    margin: 0;
    padding: 0;
    height: 100vh;
}

#div1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  width: 700px;
 margin-left: 400px;
    gap: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

#fontsize {
    width: 300px;
}

#fontsize-value {
    color: white;
    font-size: 18px;
    margin-left: 10px;
}

#color3 {
    width: 60px;
    height: 30px;
}

#save-settings, #reset-settings, #toggle-font {
    font-size: 18px;
    color: white;
    background-color: black;
    border: none;
    box-shadow: 2px 2px 10px white;
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#save-settings:hover, #reset-settings:hover, #toggle-font:hover {
    background-color: white;
    color: black;
}

label {
    color: white;
    font-size: 18px;
}
#button1{
    border: none;
    box-shadow: 2px 2px 7px red;
    border-radius: 100px;
    width: 100px;
    height: 50px;
    background-color: black;
    color: white;
}

/* Media query for 2560 x 1440 screens */
@media screen and (min-width: 2560px) and (min-height: 1440px) {
    h1 {
        font-size: 80px;
    }

    #fontsize {
        width: 500px;
        height: 30px;
    }

    #fontsize-value {
        font-size: 22px;
    }

    #color3 {
        width: 80px;
        height: 40px;
    }

    #save-settings, #reset-settings, #toggle-font {
        font-size: 22px;
        padding: 15px 30px;
    }

    label {
        font-size: 22px;
    }

    #div1 {
        gap: 30px;
        padding: 40px;
    }
}
