@import './reset.css';
@import './variables.css';

html{
    height: 100%;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--clr-light);
    background-color: var(--clr-dark);
    font-family: var(--ff-sans);
    background: linear-gradient(var(--clr-dark), 85%, var(--clr-light-pink));
    background-repeat: no-repeat;
}

.textholder{
    text-align: center;
    padding-bottom: 5rem;
}

.title {
    text-align: center;

    font-weight: 900;
    padding-bottom: 1rem;
}

.subtext {
    text-align: center; 
    font-weight: 400;
}

.subtext__info {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 80%;
    font-weight: 400;
}


.button__list {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding-bottom: 2rem;
}

.button {
    padding: 1rem;
    color: var(--clr-dark);
    background-color: var(--clr-light-pink);
    border-radius: 5px;
    text-decoration: none;
    

}

.button{
    padding: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}

.button:hover {
    background-color: var(--clr-dark-blue);
    color: var(--clr-light);
    transition: 0.3s ease-in-out;
}
