* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background: rgb(248, 248, 248);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 400px;
    padding-bottom: 50px;
}

img {
    height: 80px;
}

.btn-container {
    height: 175px;
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn {
    height: 100px;
    width: 160px;
    padding: 5px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-wrap: normal;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: rgb(39, 129, 185);
    color: rgb(248, 248, 248);
}

.btn-container a {
    text-decoration: none;
}

.description-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.description-container p {
    margin: 3px 0px;
}

.alert {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;           
  padding: 1rem 1.25rem;     
  margin: 1.5rem 0;          
}

.alert a {
  color: #0c5460;           
  font-weight: 600;
  text-decoration: underline;
}

.alert h2 {
  margin-top: 0;             
  margin-bottom: 1rem;
}

.alert ul {
  margin: 1rem auto 0 auto;  
  display: inline-block;     
  text-align: left;          
  padding-left: 1.25rem;     
}