:root {
    --sma-blue: rgb(8, 51, 143);
    --sma-red: rgb(186, 18, 43);
    --sma-light-red: rgba(186, 18, 43, 0.1);
    --sma-light-red-2: rgba(186, 18, 43, 0.2);
    --sma-title-red: rgba(186, 18, 43, 0.5);
    --sma-green: rgb(3,56,39);
    --sma-green-light: rgba(3,56,39,0.4);
    --sma-green-light-2: rgba(3,56,39,0.6);
    --text: 1.5rem;
}
.container {
    width: 100vw;
    height: 100vh;
}

.text-container {
    font-size: 1.6rem;
    position: fixed;
    top: 5%;
    left: 5%;
    width: 90%;
    z-index: 10;
}


button {
    width: 280px;
    height: 40px;
    padding: 10px;
    border: 1px solid var(--sma-red);
    background-color: var(--sma-light-red);
}

button:hover {
    background-color: var(--sma-light-red-2);
}

button:active {
    background-color: white;
}

img {
    width: 80%;
    position: fixed;
    bottom: 0;
    left: 10%;
}