/* update */
html {
    font-size: 14px;  /* Default is 16px, try 14px or 15px */
}

body{
    background-color: #e6e6e6;
}

.site-header{
    position: absolute;
    top: 50px;
    left: 50px;
    font-family: 'Inria Sans', sans-serif;
    font-weight: 300;
    font-size: 3.2rem;
}

.datetime{
    position: absolute;
    top: 70px;
    right: 50px;
    font-family: 'Inria Sans', sans-serif;
    font-size: 1.5rem;
}

.greeting{
    font-size: 20px;
}
main{
    margin-top: 300px;
    padding-left: 40px;
}
.about{
    font-family: 'Inria Sans', sans-serif;
    font-size: 1.7rem;
}

.social-links img{
    width: 35px;
    height: 35px;
}

.social-links {
    position: absolute;
    bottom: 40px;
    right: 50px;
    
}

.email{
    padding-left: 5px;
}

.movies-link{
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-family: 'Inria Sans', sans-serif;
    font-size: 1.6rem;
}

.movies-link a{
    color: rgb(77, 72, 72);
    text-decoration: none;
}

.movies-link a:hover{
    color: black;
    transform: scale(1.2);  
}

.movies-link a::after {
    content: ' →';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.movies-link a:hover::after {
    color: black;
    opacity: 1;
    transform: translateX(0);
}


.social-links a img {
    transition: all 0.3s ease;  
}

.social-links a img:hover {
    transform: scale(1.2);  
}

.greeting img{
    width: 20px;
    height: 20px;
}






