.container {
    width: 40%;
    height: 50%;
    margin-top: 12vh;
    background-color: blue;
    margin-left: auto;
    margin-right: auto;
    cursor: url(favicon/favicon.ico), auto;
}

h1 {
    font-family: 'apercubold';
    letter-spacing: 0.05em;
    font-size: 45px;
    text-align: center;
    color: white;
    padding-top: 40px;
}


h2 {
    font-family: 'apercubold';
    letter-spacing: 0.04em;
    font-size: 50px;
    text-align: center;
    color: blue;
    padding-top: 10px;
}

p {
    font-family: 'apercubold';
    letter-spacing: 0.04em;
    font-size: 30px;
    text-align: center;
    color: white;
    margin-top: 50%;
}

.p2 {
    font-family: 'apercubold';
    letter-spacing: 0.02em;
    font-size: 30px;
    text-align: center;
    color: blue;

}


.container:hover {
    background-color: white;
}


@media screen and (max-width: 1000px) {
    .p2 {
        font-size: 18px;

    }
}

@media screen and (max-width: 600px) {

    .container {
        height: 65vh;
        width: 65vw;
    }

    h1 {
        font-size: 25px;
    }

    h2 {
        display: none;
    }

    p {
        font-size: 20px;
        margin-top: 100%;
    }

    .p2 {
        font-size: 12px;
        color: white;
        padding-bottom: 5px;
    }
