@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

body {
    font-family: 'Domine', serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

container {
    width: 50vw;
    display: flex;
    flex-direction: column;

}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #7f8c8d;
}

a {
    color: #2980b9;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

small {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 30px;
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
}