* {
    margin: 0;
    font-weight: 300;
    font-family: "Inter", sans-serif;
}
body {
    background-color: #F2F2F2;
}
h2 {
    font-weight: 600;
}
h3 {
    font-weight: 400;
}
strong {
    font-weight: 400;
}


.font-size-1 {
    font-size: 40px;
}
.font-size-2 {
    font-size: 36px;
}
.font-size-3 {
    font-size: 32px;
}
.font-size-4 {
    font-size: 24px;
}
.font-size-5 {
    font-size: 20px;
}
.font-size-6 {
    font-size: 16px;
}


.decorative-line {
    position: absolute;
    height: 35px;
}


.hero {
    width: 100%;
    height: 100vh;
    background-color: white;
    background-image: url("../images/mobile-phones.png");
    background-repeat: no-repeat;
    background-position: left -30vw bottom -30vw;
    background-size: 120%;
    position: relative;
}
.hero > * {
    position: absolute;
}
.hero-header {
    right: 33%;
    top: 25%;
}
.hero-quote {
    right: 10%;
    top: 45%;
    width: 400px;
}
.hero>nav {
    right: 10%;
    top: 10%;
}
.hero>.decorative-line:first-of-type {
    right: calc(10% + 50px * 3 + 100px);
    top: 10%;
}
.hero>.decorative-line {
    right: 10%;
    top: 60%;
}

.contact-nav {
    display: inline-block;
    height: 50px;
    width: 50px;
    padding: 0 5px;
    background-repeat: no-repeat;
    background-position-x: center;
}
.email-icon {
    width: 60px !important;
    background-image: url("../images/icons/navigation-icons/email-logo.png");
}
.linkedin-icon {
    background-image: url("../images/icons/navigation-icons/linkedin-logo.png");
}
.fiverr-icon {
    background-image: url("../images/icons/navigation-icons/fiverr-logo.png");
}
.email-icon:hover {
    background-image: url("../images/icons/navigation-icons/hover-variants/email-logo-hover.png");
}
.linkedin-icon:hover {
    background-image: url("../images/icons/navigation-icons/hover-variants/linkedin-logo-hover.png");
}
.fiverr-icon:hover {
    background-image: url("../images/icons/navigation-icons/hover-variants/fiverr-logo-hover.png");
}


.projects {
    padding: 0px 120px;
    position: relative;
}
.projects>.decorative-line:first-of-type {
    right: 200px;
    top: -75px;
}
.projects>* {
    margin: 100px 0;
}
.projects>section {
    margin: auto;
    width: 65vw;
    position: relative;
}
.project-element {
    display: flex;
}
.project-element>img {
    height: 25vw;
}
.project-element>article {
    flex: 1;
    position: relative;
    padding-bottom: 100px;
}
.project-element>article>section>h3 {
    margin-bottom: 10px;
}
.project-element > article > button {
    position: absolute;
    right: 5%;
    bottom: 0%;
    width: 280px;
    max-width: 100%;
    height: 70px;
    /* border: 2px solid #FFB646;
    background-color: #FFB646; */
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.project-element > article > button:hover {
    background-color: #ffa726;
    border-color: #ffa726;
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.project-element > article > button:active {
    background-color: #ff9800;
    border-color: #ff9800;
    transform: scale(0.98);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.project-hr {
    margin: 100px auto;
}
.projects>section>a {
    position: absolute;
    right: 0;
    bottom: -125px;
    text-decoration: underline #FFB646 3px;
    color: #000;
}


.about {
    margin: 300px 0 150px;
    height: 600px;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
}
.about>.decorative-line {
    right: 200px;
    bottom: 75px;
}
.about>article {
    width: 50vw;
}
.about>article>h2 {
    padding: 15px 0;
    text-decoration: underline #FFB646 4px;
}
.about>article>p {
    padding: 10px 0;
}
.adrian-rusin-flutter-dev-profile-picture {
    width: 175px;
    border-radius: 32px;
}


.contact {
    margin: 125px auto 100px;
    width: 75vw;
}

.contact>article {
    display: flex;
    width: 100%;
    height: 200px;
    justify-content: space-around;
    align-items: center;
}

.contact-mail-section>h2 {
    font-weight: 400;
}
.contact-mail-section>p {
    margin-left: 1px;
    margin-top: 5px;
}

.email-text {
    color: #4472E8;
    text-decoration: underline;
}

footer {
    background-color: #999;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}
.name-in-footer {
    font-weight: 600;
    text-decoration: underline;
    color: #fff;
}