/* General styles */
*{
    background-color: beige;
}
#bottomLinks {
    color: turquoise;
    text-align: center;
    font-size: 36px;
    font-family: Arial, sans-serif;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

#info-box {
    width: 70%;
    margin: 20px auto;
    padding: 20px;

    border: 2px solid #ccc;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: bold ;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

#Name {
    font-size: 72px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    font-family: cursive;
    color: turquoise;
}

/* Media query for tablets */
@media (max-width: 768px) {
    #bottomLinks {
        font-size: 20px;
        bottom: 15px;
    }

    #info-box {
        width: 90%;
        font-size: 16px;
        padding: 15px;
    }

    #Name {
        font-size: 28px;
    }
}

/* Media query for phones */
@media (max-width: 480px) {
    #bottomLinks {
        font-size: 18px;
        bottom: 10px;
    }

    #info-box {
        width: 95%;
        font-size: 14px;
        padding: 10px;
    }

    #Name {
        font-size: 24px;
    }
}