:root{
    padding: 0px;
    margin: 0;
}

body{
    padding: 0px;
    margin: 0;
}

.art-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(245, 245, 245);
    width: 100vw;
    height: fit-content;
    overflow-y: scroll;
    overflow-x: hidden;
    gap: 100px;
}

.art-piece-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60vw;
    height: 100vh;
    object-fit: cover;
}

.art-piece{
    border: 4px solid white;
    border-radius: 4px;
    box-shadow: 0px 8px 8px rgb(128, 128, 128);
}

.big-picture{
    width: 800px;
    object-fit: cover;
}

.square-picture{
    width: 512px;
    height: 512px;
}

.art-piece-caption{
    width: 80%;
    text-align: center;
    color: rgb(56, 56, 56);
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
}

.project-title{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 6rem;
    text-align: center;
    font-weight: 800;
    width: 100%;
    letter-spacing: -0.25rem;
    color: rgb(56, 56, 56);
    text-transform: uppercase;
}

.project-platforms{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.563rem;
    text-align: center;
    width: 60%;
        color: rgb(96, 96, 96);
}

.project-info{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    line-height: 1.5;;
    width: 60%;
}

.greeting{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.953rem;
    text-align: left;
    width: 60%;
    color: rgb(56, 56, 56);
}

.side-bar-container{
    position: fixed;
    top: 0px;
    left: 0px;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.side-bar-label {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1.563rem;
    text-decoration: none;
    color: rgb(80, 80, 80);
    text-align: left;
    text-transform: uppercase;
    padding-left: 24px;
    padding-right: 0px;
    line-height: 1.5;
}

.side-bar-label:hover, .kizzagarhu:hover{
    color: mediumslateblue;
    padding-left: 28px;
}

.kizzagarhu{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    text-decoration: none;
    color: rgb(80, 80, 80);
    text-align: left;
    text-transform: uppercase;
    padding-left: 24px;
    margin-bottom: 64px;
    margin-top: 24px;

}

.sign-off{
    width: 60%;
    color: rgb(56, 56, 56);
    font-size: 1.25rem;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
}

.sign-off-signature{
    text-align: right;
}

.socials-container{
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.social-media-icon{
    width: 32px;
    height: 32px;
    border-radius: 5px;
}

.scroll-marker{
    position: absolute;
    bottom: 24px;
    right: calc(50vw - 20px);
    width: 40px;
    height:40px;
    opacity: 60%;
}

.call-to-action-button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 64px;
    border: 1px solid rgb(56, 56, 56);
    border-radius: 5px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.563rem;
    color: rgb(56, 56, 56);
    color: white;
    text-decoration: none;

    background-color:mediumslateblue;
    margin-top: 160px;
}

.call-to-action-button:hover{
    background-color:rgb(144, 128, 232);
}

