body {
    background-color: rgb(255, 255, 255);
    margin: 0;
    padding: 0 8%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}


        a:link{
            color: rgb(250, 146, 146);
        }
        a:visited{
            color: rgb(249, 178, 178);
        }
        a{
            text-decoration: none;
        }
        

        
        *{
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        }

        h1 {
            color: rgb(40, 39, 39);
            font-family: cursive;
            text-align: center;
            font-size: 2rem;
        }

        p, ul, table {
            font-size: 1rem;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th, td {
            padding: 8px;
            text-align: center;
        }

        th {
            
            background-color: #f2f2f2;
        }

        .social-links {
            justify-content: center;
            align-items: center;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .social-links img {
            width: 80px;
            height: 80px;
            transition: transform 0.3s ease;
        }

        .social-links img:hover {
            transform: scale(1.3);
        }

        footer {
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            body {
            padding: 0 5%;
            }
            h1 {
            font-size: 1.5rem;
            }
            .social-links img {
            width: 50px;
            }
            table {
            font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            h1 {
            font-size: 1.3rem;
            }
            .social-links img {
            width: 45px;
            }
        }

