html {
   margin: 0;
   padding: 0;
   font-family: 'Montserrat', sans-serif;
   color: rgb(255, 255, 255);
}

body {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
   margin: 10px;

}

main {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding: 20px;
   border-radius: 50px;
   max-width: 1200px;
   width: 100%;
   text-align: center;
}

.container {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   background-color: #0707f2;
   padding: 20px;
   border-radius: 50px;
   max-width: 1200px;
   width: 100%;
   text-align: center;
}

.row {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   width: 100%;
}

.column {
   flex: 1;
   margin: 10px;
   padding: 20px;
   background-color: #ffffff;
   border-radius: 50px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   color: #0707f2;
}




h1 {
   font-size: 2em;
   margin-bottom: 20px;
   text-align: center;
   font-weight: 600;
   background-color: #0707f2;
   padding: 10px;
   border-radius: 50px;
   width: 50%;
}

p {
   font-size: 1em;
   line-height: 1.6;
}

a {
   color: #0707f2;
}

a:hover {
   text-decoration: underline;
   color: #fc5122;
}

