@font-face {
    font-family: 'QEVRead';
    src: url('/static/QEVRead.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #007BFF;
    --secondary-color: #A4BAD2;
    --background-color: #F3EFE6;
    --light-grey-color: #D9D9D9;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'QEVRead', sans-serif;
    background-color:var(--background-color);
}

.landing{
    min-height: 99vh;
    display: flex;
    flex-direction: column;
    
}

.intro{
    margin-bottom: 20px;
    margin-left: 10px;
    align-items: flex-end;
}

.intro p{
    color: var(--light-grey-color);
    font-size: 16px;
    margin: 5px;
}

.center{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: auto;
    text-align: right;
    width: 100%;
    flex: 1;
     
}

.greeting{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding: 20px;
}
.greeting h1{
    color: var(--primary-color);
    text-align: left;
}

.greeting p{
    color: var(--secondary-color);
    text-align: left;
    margin-top: -10px;
}

.landing .bottom{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    margin-top: auto;
}

.links{
   position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.arrow-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.arrow-container h2{
    color: var(--primary-color);
    margin-bottom: -70px;
    margin-right: 120px;
}

.arrow{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    position: relative;
    margin: 0px 0px -30px 0px; 
    
}

.links .arrow-container .arrow .arrow-shaft{
    margin: 0px 0px -44px 12px;
    color: var(--primary-color);
    width: 40px;
    height: 80px;
    font-size: 60px;
    transform:rotateZ(-65deg);
    
}
.links .arrow-container .arrow .arrow-head{
    margin: 0;
    color: var(--primary-color);
    width: 35px;
    height: 80px;
    font-size: 35px;
    transform:rotateZ(110deg);
}

.links .link-icons{
    position: relative;
    display: flex;
}

.links .link-icons ul{
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}   

.links .link-icons{
    margin: 10px 30px 0px 0px;
}

.links .link-icons li{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    color: var(--light-grey-color);
}

.links .link-icons ul li a img{
    width: 25px;
    height: 25px;
    color: var(--primary-color);
}

