*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    background-image: url(src/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: skyblue;
}

.main{
    width: 400px;
    height: 500px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: skyblue;
    border-radius: 10px;
}

h3{
    padding: 4px;
    font-size: 30px;
    font-style: italic;
    text-align: center;
    color: rgb(0, 55, 107);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif,cursive;


}

.title{
    color: white;
}

.main a{
    border: 1px solid green;
    font-size: 14px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-decoration: none;
    text-align: center;
    text-transform: capitalize;
    padding: 8px 12px;
    margin-top: 20px;
    background-color: green;
    color: white;
    border-radius: 3px;
    transition: all 0.5s;

}
.main a:hover{
    color: green;
    background-color: transparent;
}