/* Reset some defaults */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  font-family: "Times New Roman";
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
}

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  max-width: 600px;
  width: 100%;
  height: 100%;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo img {
  max-width: 250px;
  margin-bottom: 20px;
}

.text p {
  font-size: 1.3rem;
  text-align: left;
  margin-bottom: 30px;
}

ul {
  list-style-type: none;
  font-family: 'Roboto';
  font-size: 1rem;
  line-height: 1.5rem;
}

.actions {
  margin-top: auto;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.socials {
  margin-top: 10px;
  padding-bottom: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.btn {
  text-decoration: none;
  background-color: #1b5c81;
  color: white;
  font-family: 'Roboto';
  padding: 10px 20px;
  margin-bottom: 15px;
  border-radius: 100px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #144660;
}