* {
    margin: 0px;
    padding: 0px;
}


body {

    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #F7F7F7;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    justify-content: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.content {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.content h1 {
    font-size: 3rem;
    color: #40bff2;
    margin-bottom: 7px;
}

.content p:nth-of-type(1) {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 7px;
}

.content p:nth-of-type(2) {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 7px;
}

.content p:nth-of-type(3){
    font-size: 18px;
    font-weight: 500;
    
}
.content p span a{
    text-decoration: none;
    color: #09445b;

}
@media only screen and (max-width: 767px) {
    .content h1 {
        font-size: 30px;
    }
    .content{
        width: 500px;
    }
    .content p:nth-of-type(1) {
        font-size: 20x;
    }
    .content p:nth-of-type(2) {
        font-size: 19px;
    }
}