header {
    background-color: tomato;
    color: white;
    text-align: center;
    padding: 1rem;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: tomato;
}

main {
    padding: 1rem;
}

.container {
    font-family: arial;
    font-size: 24px;
    margin: 25px;
    width: auto;
    height: 200px;
    /* outline: dashed 1px black; */
    /* Center vertically and horizontally */
    display: flex;
    justify-content: center;
    align-items: center;
  }

.sos {
    font-size: 42px;
    font-weight: bold;
    color: white;
    background-color: red;
    
}

section {
    margin-bottom: 2rem;
    align-content: center;
}

button {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
}

footer {
    background-color: tomato;
    color: white;
    text-align: center;
    padding: 0.5rem;
    position: absolute;
    width: 100%;
    bottom: 0;
}
