* {
/*    background: pink;*/
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    margin: 0;
}

.menu {
/*    background: yellow;*/
/*    padding: 10px;*/
    width: 100vw;
/*    FLEXBOX*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    justify-content: center;
    align-items: center;
}

.pagelink {
/*    background: pink;*/
    padding: 10px;
}

/*MENU LINKS STYLING*/
a {
    outline-color: transparent;
    text-decoration: none;
    color: mediumvioletred;
}

a:hover {
    text-decoration: none;
    color: blue;
}

a:active {
    text-decoration: none;
    color: orange;
}
/*END OF MENU LINKS STYLING*/

.welcome-message {
/*    background: yellow;*/
    padding: 10px;
    width: 100vw;
    font-size: 3rem;
}

.focus-in {
    font-size: 1rem;
    text-align: right;
}

/*WORK-MAIN.CSS*/
.container {
/*    background: green;*/
    width: 100vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    align-items: center;
}

.works {
    background: orange;
    width: 20vw;
    padding: 10px;
}

.work-info {
/*    background: blue;*/
    width: 80vw;
    padding: 10px;
}

/*FOOTER*/
.footer {
/*    background: pink;*/
}

img.socials {
    width: 30px;
    margin: 10px;
}
/*END OF FOOTER*/