body{
    /* Background color */
    background: rgb(43,161,244);
    background: -moz-linear-gradient(90deg, rgba(43,161,244,1) 0%, rgba(49,196,197,1) 50%, rgba(60,236,153,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(43,161,244,1) 0%, rgba(49,196,197,1) 50%, rgba(60,236,153,1) 100%);
    background: linear-gradient(90deg, rgba(43,161,244,1) 0%, rgba(49,196,197,1) 50%, rgba(60,236,153,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2ba1f4",endColorstr="#3cec99",GradientType=1);

    text-align: center;
    font-family: 'Inter', sans-serif;
    color: white;
    margin: 25px;
}

hr{
    width: 50%;
}

div.btn-div{
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

a{
    text-decoration: none;
}

.button{
    background-color: transparent;
    background-repeat: no-repeat;
    color: white;
    border: 2px solid white;
    cursor: pointer;
    padding: 16px 32px;
    text-align: center;
    font-size: 16px;
    margin: 10px 2px;
    transition: 0.3s;
    width: 250px;
    text-decoration: none;
    border-radius: 15px;
}

.button:hover{
    background-color: white;
    color: #31c4c5;
}

p.copyright{
    bottom: 0;
}

p.italic{
    font-style: italic;
}