* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --primary: rgba(32, 130, 148, 0.753);
    --secondary: white;
    --third: #dfdb14;
    --fourth: #b9bbbbce;
}

/* BODY START */
body {
    background-color: var (--fourth);
    font-size: 20px;
    font-family: 'Abel', sans-serif;
}
/* BODY END */

/* HEADER START */
.header {
    padding: 5px;
    font-family: 'Abel', sans-serif;
    background-color: rgba(32, 130, 148, 0.753);
    color: #ffffff;
}

.header h1 .Portfolio {
    font-family: 'Allison', cursive;
    display: inline-block;
    color: #dfdb14;
    font-size: 60px;
}

.header h1 {
    display: inline-block;
    font-size: 30px;
}

.header nav {
    padding-top: 15px;
    margin-right: 15px;
    float: right;
    font-family: 'Abel', sans-serif;
    font-size: 20px;
}
    
.header nav ul {
    list-style-type: none;
}

.header nav ul li {
    display: inline-block;
    margin-left: 25px;
    text-decoration: underline; 
    text-decoration-color: #dfdb14;
    text-decoration-thickness: 15%;
    text-underline-offset: 0.3em;
}
/* HEADER END */

/* HERO START */
.hero-header {
    display: flex;
    background-image: url("../images/iceland-icebergs.jpg");
    background-size: cover;
    background-position: center;
    height: 225px;
    justify-content: flex-start;
    align-items: center;    
}

.hero-header img {
    width: 150px;
    background-size: cover;
    border: 5px solid rgba(32, 130, 148, 0.753);   
}

.hero-header .text {
    font-size: 30px;
    font-family: 'Allison', cursive;
    padding: 10px 20px;
    text-align: center;
    background-color: var(--primary);
    border: 3px solid var(--secondary);
}
/* HERO ENDS */

/* ABOUT ME Section - Start */
.about-me-layout {
   
}

.about-me-title {
    max-width: 35%;
    text-align: center;
    margin: 1%;
    padding: 1%; 
}

.about-me-text p {
    font-size: 15px;
   
}
/* ABOUT ME Section - END */

/* WORK Section Syles - Start */
.work {
    padding: 30px 0;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.note {
    max-width: 500px;
    min-width: 500px;
    height: 500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.note img {
    width: 100%
}

.work-layout {
    display: flex;

}
.work-title {
    max-width: 35%;
    text-align: center;
    margin: 1%;
    padding: 1%;
}
.flexbox {
    display: flex;
    flex-wrap: wrap;

}
/* Group-Project-2 Images Start */
#group-project-2 {
    flex: 1 100%;
    margin-bottom: 20px;
    width: 100%;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
/* Group-Project-2 Image END */

/* CONTACT Information - style start */
.contact-info a {
    text-decoration: underline;
    text-decoration-color: rgba(32, 130, 148, 0.753);
    text-decoration-thickness: 15%;
    text-underline-offset: 0.3em;
    
}
.contact-info ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    list-style: none;
    font-weight: bold;
}
.contact-info ul li {
    padding: 30px 30px;
    font-size: 1.5vw;
    margin-right: 10px;
}
.contact-info ul li a {
    border-bottom: 2px solid var(--secondary);
    border-width: min-content;
    padding-bottom: 2px;
    color: var(--primary);
}
.contact-info ul li a:hover {
    color: var(--third);
}

/* CONTACT ME styles end */





