@font-face {
    font-family: 'quicksand';
    src: url('assets/fonts/quicksand.ttf');
}

body{
    font-family: 'quicksand';
}

:root {
  --base-width: 400;
  --base-height: 620;
  --vwUnit: calc(100vw / var(--base-width));
  --vhUnit: calc(100vh / var(--base-height));
}

.phone{
    position: relative;
    /* The exact logical dimensions */
    width: 430px;
    height: 840px;
    
    /* Styling to make it look like a phone */
    border: 10px solid #333; /* Bezel */
    border-radius: 40px;     /* Rounded corners */
    background: white;       /* Screen color */
    margin: 25px auto;       /* Centers it on your monitor */
    overflow: hidden;        /* Clips content to the rounded corners */
    box-shadow: 0 0 20px rgba(0,0,0,0.5); /* Nice drop shadow */
}

.dynamic-island {
    /* Absolute positioning to stick it to the top center */
    position: absolute;
    top: 23px; /* Distance from the top bezel */
    left: 50%;
    transform: translateX(-50%); /* Centers it perfectly */
    
    /* Island Dimensions (Resting State) */
    width: 126px;
    height: 37px;
    
    /* Styling */
    background-color: black;
    border-radius: 20px; /* Makes it pill-shaped */
    z-index: 1000; /* Ensures it stays on top of your content */
}

.content{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(255, 170, 12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.content .searchOptions{
    height: 70%;
    width: 81%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column; 
    gap: 20px;
}

.content .searchOptions video{
    width: 350px;
    height: 350px;

    max-width: 700px;
    max-height: 700px;

    width: 100%;
    height: auto;
    border-radius: 1.3rem;
}

.content .searchOptions .row1, .content .searchOptions .row2{
    width: 100%;
    height: 7.5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.content .searchOptions .row1 button{
    width: 100%;
    height: 100%;
    background-color: #0054E9;
    color: rgb(238, 238, 238);
    font-size: 20px;
    border: 2px solid #005cfa;
    border-radius: 1.3rem;
    -webkit-box-shadow: 5px 5px 18px -3px rgba(0,0,0,0.51); 
    box-shadow: 5px 5px 18px -3px rgba(0,0,0,0.51);
    text-align: center;
    cursor: pointer;
    transition: all 0.1s ease-out;
}

.content .searchOptions .row1 button:active{
    background-color: #004ac9;
    border: 2px solid #004bce;
    border-radius: 1.35rem;
    transform: scaleX(0.975) scaleY(0.91);
    font-size: 18px;
}

.content .searchOptions .row1 button i{
    margin-right: calc(1.5 * var(--vwUnit));
}

.content .searchOptions .row2 button{
    width: 48%;
    height: 100%;
    background-color: #f3f5f8;
    color: rgb(17, 17, 17);
    font-size: 20px;
    border: 2px solid #ffffff;
    border-radius: 1.3rem;
    -webkit-box-shadow: 5px 5px 18px -3px rgba(0,0,0,0.51); 
    box-shadow: 5px 5px 18px -3px rgba(0,0,0,0.51);
    transition: all 0.1s ease-out;
    cursor: pointer;
}

.content .searchOptions .row2 button:active{
    background-color: #ced1d4;
    border: 2px solid #d6d6d6;
    border-radius: 1.35rem;
    transform: scaleX(0.975) scaleY(0.91);
    font-size: 18px;
}

.content .searchOptions .row1 button i{
    margin-right: calc(1.5 * var(--vwUnit));
}

.navigator{
    position: absolute;
    bottom: 6%;
    left: 9.5%;
    display: flex;
    align-content: center;
    justify-content: space-evenly;
    flex-direction: row;
    width: 81%;
    height: 7%;
    background-color: rgba(51, 51, 51, 0.459);
    border-radius: 1.8rem;

    -webkit-box-shadow: 5px 5px 16px -2px rgba(0,0,0,0.77); 
box-shadow: 5px 5px 16px -2px rgba(0,0,0,0.77);
}

.navigator .selection{
    height: 75%;
    width: 23%;
    background-color: rgba(32, 32, 32, 0.432);
    
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;

    text-align: center;

    color: #EEEEEE;

    margin-top: 1.20%;

    border-radius: 1.8rem;
    padding: 3px;

-webkit-box-shadow: -4px 10px 16px -2px rgba(0,0,0,0.73); 
box-shadow: -4px 10px 16px -2px rgba(0,0,0,0.73);

transition: all 0.1s ease-in;

cursor: pointer;
}

.navigator .selection i{
    font-size: 25px;
}

.navigator .selection p{
    margin-top: 0px;
    font-size: 13px;    
}

.navigator .selection.selected{
    background-color: #0054E9;
    width: 27%;
    margin-top: 1px;
    height: 80%;
}

.navigator .selection:active{
    transform: scale(0.95);
}

.content .account{
    position: relative;
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.content .account .option{
    width: 100%;
    height: 15%;
}

.content .account .bottom{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15%;
    text-align: left;
    color: rgb(68, 68, 68);
}

.content .account .bottom a{
    color: #3232a3;
}