/* Big Computer */
@media screen and (min-width: 1024px) {

    #nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #4EB5D2;
        position: sticky;

        width: 100%;
        height: 75px;
        padding: 15px;
        top: 0;

        font-family: "Dancing Script", cursive;
        font-optical-sizing: auto;
        font-weight: 515;
        font-style: normal;
    }

    #nav > a {
        text-decoration: none;
        color: rgb(30, 30, 50);
        font-size: 32px;
    }

    a > p {
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 8px;
        padding-bottom: 8px;
        border-radius: 7px;
        background-color: #4EB5D2;
        transition-timing-function: ease-in-out;
        transition: background-color 0.5s;
    }

    a > p:hover {
        background-color: rgb(255, 255, 255);
    }

    #logo {
        width: 225px;
        height: 75px;
        padding-top: 15px;
        padding-bottom: 8px; 
        border-radius: 15px;
    }

    #container {
        width: 100%;
    }

    .border {
        border: 3px solid black;
        border-radius: 6px;
    }

    #footer {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #000000;
        color: white;

        width: 100%;
        height: 25px;
        padding: 15px;
        bottom: 0;
        font-size: 20px;
    }

    .centertext {
        text-align: center;
    }

}



/* Small Phone */
@media screen and (max-width: 411px) {

    #nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #4EB5D2;
        position: sticky;

        width: 101%;
        height: 75px;
        padding: 15px;
        top: 0;

        font-family: "Dancing Script", cursive;
        font-optical-sizing: auto;
        font-weight: 515;
        font-style: normal;
    }

    #nav > a {
        text-decoration: none;
        color: rgb(30, 30, 50);
        font-size: 18px;
    }

    a > p {
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 8px;
        padding-bottom: 8px;
        border-radius: 7px;
        background-color: #4EB5D2;
        transition-timing-function: ease-in-out;
        transition: background-color 0.5s;
    }

    a > p:hover {
        background-color: rgb(255, 255, 255);
    }

    #logo {
        width: 225px;
        height: 75px;
        padding-top: 15px;
        padding-bottom: 8px; 
        border-radius: 15px;
    }

    #container {
        width: fit-content;
    }

    .border {
        border: 3px solid black;
        border-radius: 6px;
    }

    #footer {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #000000;
        color: white;
        text-align: center;

        width: 101%;
        height: 25px;
        padding: 15px;
        font-size: 14px;
        bottom: 0;
        
    }

    .centertext {
        text-align: center;
    }

}



/* medium tablet */
@media screen and (min-width: 810px) and (max-width: 1023px) {

    #nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #4EB5D2;
        position: sticky;

        width: 101%;
        height: 75px;    
        padding: 15px;
        top: 0;
        gap: 1%;

        font-family: "Dancing Script", cursive;
        font-optical-sizing: auto;
        font-weight: 515;
        font-style: normal;
    }

    #nav > a {
        text-decoration: none;
        color: rgb(30, 30, 50);
        font-size: 28px;
    }

    a > p {
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 8px;
        padding-bottom: 8px;
        border-radius: 7px;
        background-color: #4EB5D2;
        transition-timing-function: ease-in-out;
        transition: background-color 0.5s;
    }

    a > p:hover {
        background-color: rgb(255, 255, 255);
    }

    #logo {
        width: 225px;
        height: 75px;
        padding-top: 15px;
        padding-bottom: 8px; 
        border-radius: 15px;
    }

    #container {
        width: fit-content;
    }

    .border {
        border: 3px solid black;
        border-radius: 6px;
    }

    #footer {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #000000;
        color: white;

        width: 101%;
        height: 25px;
        padding: 15px;
        font-size: 18px;
        bottom: 0;
        
    }

    .centertext {
        text-align: center;
    }

}