/* main.css */

html {
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

body {
    background: rgba(255, 255, 255, 0.0); /* Transparent white (50% opacity) */
    color: #545454;
    font-family: "Montserrat", "Arial", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
    padding: 2em 2em 4em;
}

#photographyButton {
    display: block;
    margin: 20px;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    background-color: gainsboro;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.4s, transform 0.4s ease;
    border-radius: 100%;
    width: 100px; /* Set width of the button */
    height: 100px;
    
}

#photographyButton:hover {
    transform: rotate(10deg);
    background-color: #212a09;
    color: #dffe5e;
}


h1, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: grey;
    margin-top: 20px;
    font-weight: 600;
    line-height: 12px;
    word-spacing: 0px;
    text-align: left;
    animation: slide-top1 ease 0.8s forwards;
}

h2 {
    font-family: 'Montserrat', sans-serif; 
    color: grey;
    font-weight: 400;
    line-height: 12px;
    animation: slide-top ease 0.8s forwards;
    word-spacing: 0px;
    margin-bottom: 120px;
}

@keyframes slide-top {
    0% {
        transform: translateY(-90%);
    }
}

@keyframes slide-top1 {
    0% {
        transform: translateY(90%);
    }
}

.specific-image {
    display: block;
    max-width: 100%; /* Set maximum width to 100% */
    height: auto;
    margin-bottom: 80px;
    margin-top: 20px;
}

.oyono {
    margin-bottom: 80px;
    margin-top: 20px;
}

.gif {
    width: 300px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h7 {
    font-size: 20px;
    color: grey;
    font-weight: 400;
    word-spacing: 0px;
    text-align: left;
}

p1 {
    color: grey;
    font-size: 20px;
    padding-bottom: 40px;
    margin-top: 20px;
    font-weight: 400;
    line-height: 8px;
    word-spacing: 0px;
    text-align: left;
}

.cv-link {
    color: #212a09; /* Default color */
}

.cv-link:hover {
    color: #dffe5e; /* Color on hover */
}
