* {
    font-family: 'Ubuntu', sans-serif;
    /* border: 1px solid red; */
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
   
    height: 100vh;
    margin: 0;

    background-color: #D7DEE1;
}

/* styles under class "check-out-box" */
.check-out-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;

    width: 46.188rem;
    max-width: 93%;
    height: 34.313rem; 
    max-height: 100vh;

    background-color: #F0F0F0;
    border-radius: 15px;
}

.user-dashboard-button {
    align-self: flex-end;

    width: 1.875rem;
    height: 1.875rem;

    margin: 0;
    margin-top: 1.125rem;
    margin-right: 1.188rem;
}

/* styles under class "check-out-box-header" */
.check-out-box-header {
    margin: 0;
    margin-bottom: 5.5rem;

    font-weight: 400;
    font-size: 2.5rem;
}

/* styles under class "text" */
.text {
    margin-bottom: 2.25rem;
    
    color: #75858A;
    font-size: 1.25rem;
}

/* styles under class "check-out-button" */
.check-out-button {
    width: 17.25rem;
    max-width: 70%;
   
    padding: 2vh;
    margin-bottom: 0.625rem;
  
    background-color: #482727;
    border-radius: 10px;
    color: #C2D4DA;
    font-size: 1.5rem;
}

/* styles under class "text-two" */
.text.two {
    margin-bottom: 0.625rem;
}

/* styles under class "error" */
.error {
    height: 1.188rem;
    max-width: 90%;
    
    margin: 0;
    margin-bottom: 2.25rem;
    padding: 0;

    text-align: center;
    
    color: red;
}

/* media queries to alter styles according to screen sizes */
@media only screen and (max-width: 520px) {
    html {
        font-size: 70%;
    }
}
