body {
    background-color: #040D12;
    margin: 30px 30px 0 30px;
}

h1 {
    color: #94B4C1;
    font-family: Arial, Helvetica, sans-serif;
}


p {
    color: #F3F4F4;
    font-family: Arial, Helvetica, sans-serif;
}

.pdiv {
    display: block;
    flex-shrink: 0;
    text-align: justify;
    margin: 0;
}

.footer {
    color: #F3F4F4;
    text-align: center;
    margin-top: 10rem;
    font-size: 0.875rem;
}

/*Navigation Bar*/

nav ul {
    display: flex;
    justify-content: end;
    list-style-type: none;
    margin: 0;
    padding: 8px;
    gap: 25px;
    padding-bottom: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: large;

}

nav a {
    text-decoration: none;
    color: #94B4C1;
    position: relative;
    padding-bottom: 6px;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #F3F4F4;
    transition: width 0.4s ease;
}

nav a:hover::after {
    width: 100%;
}

/*Media*/

@media (max-width: 600px ) {
    
    .pdiv {
        font-size: 0.875rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }

    .footer {
        font-size: 0.55rem;
    }

    .navul {
    font-size: small;
    }

    nav ul {
        gap: 16px;
        font-size: small
    }
}

@media (max-width: 1024px) and (min-width: 601px) {

    .pdiv {
        font-size: 1.125rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    nav ul {
        gap: 26px;
        font-size: medium;
    }

}

@media (min-width: 1025px) and (max-width: 1920px) {

    .pdiv {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .thibox {
        max-width: 1000px;
    }

    nav ul {
        gap: 26px;
        font-size: medium;
    }
}