main
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: auto;
}

.title
{
    font-size: 50px;
    font-weight: bold;
    padding-top: 100px;
    padding-bottom: 20px;
}

.title-info
{
	padding-bottom: 2%;
}
ul{
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 25px;
}
li{
    margin-bottom: 8px;
}
.form
{
    display: flex;
    flex-direction: column;
    width: 60%;
    padding: 2%;
}


.button-div
{
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.button-div a
{
    padding: 2%;
    width: 40%;
    border: 1px solid;
    border-color: #403f3f;
    border-radius: 5px;
    font-family: inherit;
    font-size: 18px;
    background-color: #262626;
    color: #69f0ae;
    box-shadow: 0 0 10px #212121;
    text-align: center;
}

.button-div a:hover
{
    background-color: #424242;
    color: #6ef5b3;
    cursor: pointer;
}


/* Media queries */

@media screen and (max-width: 1200px)
{
    .form
    {
        width: 70%;
    }
}

@media screen and (max-width: 680px)
{
    .form
    {
		width: 90%;
    }
}

@media screen and (max-width: 500px)
{
	.title
	{
		font-size: 40px;
		padding-top: 20%;
	}

	.title-info
	{
		font-size: 13px;
	}
	
	.form
	{
		padding: 6% 4%;
		padding-top: 15%;
	}
    
}