html{
    text-align: center;
}

body{
    background-image: linear-gradient(to right, rgba(15,122,176,255) 50%, rgba(15,122,176,255) 50%, white 50%, white 0%);
    color:black;
    font-family: 'Righteous', cursive;
}

fieldset
{
    border: 5px solid black;
    width:600px;
    margin:0 auto
}

h1{
    font-size: 20px;
}

h2{
    font-size: 15px;
}

h4{
    font-size: 30px;
}

p{
    font-size: 13px;
    text-align: center;
}

footer{
    font-size: 10px;
}

.container{
    display: grid;
    place-items: center;
}

.btn {
    background-color: #29bdc2;
    color: #ffffff;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Righteous', cursive;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover {
    background-color: #29bdc2;
}

.btn-secondary {
    background-color: #ffffff;
    border: 2px solid #29bdc2;
    color: #29bdc2;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Righteous', cursive;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-secondary:hover {
    background-color: #29bdc2;
    color: #ffffff;
}