body {
    margin: 0 auto;
    background-color: #1e1e1e;
}

a {
  text-decoration: none;
  color: #000;
}

h1 {
    font-size: 80px;
    line-height: 120px;
    margin-left: 5%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.phone-title{
    background-color: #ffffff;
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-title label{
    margin-left: 5%;
    width: 330px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.phone-linkedin{
    margin-right: 5%;
    width: auto;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-pages{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phone-each{
    background-color: #ffffff;
    width: 80%;
    height: 150px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: left;
    border-radius: 30px;
}

.phone-each label{
    width: 100%;
    height: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: left;
}

.phone-each h1{
    margin: 0;
}

.phone-logo{
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-logo img{
    max-height: 80%;
    max-width: 90%;
}

.fa-house-chimney, 
.fa-diagram-project, 
.fa-briefcase, 
.fa-medal,
.fa-user-tie {
    line-height: 120px;
    font-size: 80px;
    width: 200px;
    display: block;
    text-align: center;
}

.fa-backward {
    line-height: 120px;
    font-size: 60px;
    width: 80px;
    display: block;
    text-align: left;
}

#chose {
    background-color: gray;
}

#select {
    color: white;
}

#pick {
    background-color: rgb(101, 154, 211);
}

.page {
    animation: pageEntrance 0.5s;
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@keyframes pageEntrance {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pageExit {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}