@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: darksalmon;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    overflow: hidden;
    height: 100vh;
}

.btn {
    color: purple;
    background-color: white;
    border: 2px grey solid;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn:hover {
background-color: grey;
border: 2px purple solid;
}

.btn:active {
    transform: scale(0.98);
}

.toasts {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
}

.toast {
    border: 2px solid grey;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 1rem;
    width: 15rem;
    display: flex;
    align-items: center;
}

.close {
    position: absolute;
    right: 10px;
    color: grey;
    cursor: pointer;
    padding-left: 10px;
}