.start {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-color: rgba(0, 0, 0, 0.7);
}

.start .in {
    background-color: #d7e5ff;
    width: 90%;
    margin: auto;
    padding: 1.5em 2em;
    box-sizing: border-box;
    border-radius: 1em;
    max-width: 900px;
    -webkit-box-shadow: 2px 2px 11px 2px rgba(184,184,184,1);
    -moz-box-shadow: 2px 2px 11px 2px rgba(184,184,184,1);
    box-shadow: 2px 2px 11px 2px rgba(184,184,184,1);
}

.start .in .list {
    display: flex;
    margin-top: 1em;
    justify-content: space-between;
}

.start .in .list .button {
    background-color: #548dff;
    color: white;
    border-radius: 0.5em;
    text-align: center;
    padding: 0.5em 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 10em;
    min-width: 6em;
    cursor: pointer;
}

.start .in .list .button.first-task {
    margin-right: 1em;
}

.start .in .list .text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0 1em;
    font-size: 0.8em;
    justify-content: center;
}

.start .in .list .button span {
    font-size: 0.7em;
    margin-top: 0.5em;
    font-style: italic;
}

.start .in .heading {
    border-bottom: 1px solid black;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.start .in .heading strong {
    font-size: 1.5em;
}

.start .in .heading .links {
    font-size: 0.6em;
    display: flex;
    gap: 0.5em;
}

.start .in .heading .links .icon-link {
    width: 5em;
    display: flex;
    text-align: center;
    color: #1c1c1c;
    text-decoration: none;
    flex-direction: column;
    align-items: center;
}

.start .in .heading .links .icon-link img {
    width: 40%;
}

@media screen and (max-width: 993px) {
  .start .in .list {
    display: block;
  }
  
  .start .in .heading {
    flex-direction: column;
    gap: 0.5em;
    padding-bottom: 0.5em;
  }
  
  .start .in .list .button.first-task {
    margin-right: auto;
  }
  
  .start .in .list .button, .start .in .list .text {
    margin: auto;
    margin-bottom: 1em 
  }
}
