*{
    margin: 0;
    padding: 0;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
img{
    border-radius: 20px;
    width: 300px;
}

span{
    margin-top: 20px;
    font-family: 'Source Code Pro';
    font-size: 20px;
    font-weight: 500;
}

a{
    width: 300px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #75C3B4;
    border-radius: 20px;

    margin-top: 20px;
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Source Code Pro';
    font-size: 16px;
    font-weight: 500;

    cursor: pointer;
    transition: 0.2s;
}

a:hover{
    opacity: 0.8;
    transition: 0.2s;
}

@media screen and (max-height: 500px){
	body{
		justify-content: start;
	}
}