
#welcomeBox{
    position:static;
    width: 50%;
    height: auto;
    right: 0;
}

h1{
    font-size: clamp(15rem, 55vw, 70rem);
}

#welcome{
    font-size: 48px;
}

.boxes{
    position: static;
    display: grid; 
    grid-template-columns: repeat(2, 50%);
    gap: 24px; 
}

.box{
    width: auto;
    height: 100px;
    border: 4px #032c36 solid;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding-left: 6%;
    padding-right: 2%;
    gap: 20px;
}

.box p{ 
    display: inline;
    position: static;
}

.box p:first-of-type{ 
    font-weight: 900;
    font-size: 67px;
    line-height: 150%;
}

.box p:last-of-type{
    font-weight: 400;
    line-height: 150%;
    margin-left: 0;
    margin-top: 0;
}

.box:hover{
    background-color: #032c36;
    color: #fcf7f4;
}


@media screen and (min-width: 0px) and (max-width: 400px) {

    #welcomeBox{
        margin-left: auto;
        margin-right: auto;
        position:unset;
    }
   
  }


  @media screen and (max-width: 920px) {
    .boxes{
        grid-template-columns: repeat(1, 100%);
    }
    #welcomeBox{
        width: 100%;
    }
    #welcome{
        font-size: 36px;
    }

  }

