:root {
    font-size: 70%;
}

img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    position:absolute;
}
* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color:rgb(7, 7, 0);   
}

h1 {
    position: relative;
    bottom: 50px;
    top: 360px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 10px;
    text-align: center;
}
/* UTILITIES */

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 60rem;
    margin: 0 auto;
}
.flex-column {
    display: flex;
    flex-direction: column;
}


/* buttons */
.btn1 {
    font-size: 1.6rem;
    padding: 1.2rem;
    padding-left: 5rem;
    padding-right: 5rem;
    width: 30rem;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color:rgb(0, 0, 0);
    background-color: rgb(124, 140, 194);
    border-radius: 5px;
    position: relative;
    top: 100px;
}

.btn1:hover {
    cursor: pointer;
    transform: translateY(-0.5rem);
    transition: transform 150ms;
}

.btn1 [disabled]:hover {
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn2 {
    font-size: 1.6rem;
    padding: 1.2rem;
    padding-left: 5rem;
    padding-right: 5rem;
    width: 30rem;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color:rgb(0, 0, 0);
    background-color: rgb(224, 172, 207);
    border-radius: 5px;
    position: relative;
    top: 100px;
}

.btn2:hover {
    cursor: pointer;
    transform: translateY(-0.5rem);
    transition: transform 150ms;
}

.btn2 [disabled]:hover {
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn3 {
    font-size: 1.6rem;
    padding: 1.2rem;
    padding-left: 5rem;
    padding-right: 5rem;
    width: 30rem;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    color:rgb(0, 0, 0);
    background-color: rgba(132, 128, 128, 0.371);
    border-radius: 5px;
    position: relative;
    top: 100px;
}

.btn3:hover {
    cursor: pointer;
    transform: translateY(-0.5rem);
    transition: transform 150ms;
}

.btn3 [disabled]:hover {
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}





