@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    transition: all ease-in-out 0.7s;
    font-family: "Roboto", sans-serif;
}

aside {
    width: 30%;
    background-image: url(../bilder/60/fulls/02.jpg);
    background-size: cover;
    height: 100vh;
    padding: 5%;
    color: rgba(255, 255, 255, 0.6);
    position: fixed;
    margin-right: 3em;
    text-align: right;
}

#asidefooter {
    position: fixed;
    bottom: 5%;
    right: 75%;
    text-align: right;
    font-size: 0.8em;
}

#asidefooter a {
    color: white;
}

aside img {
    border-radius: 100%;
    width: 70%;
}

main {
    margin-left: 33%;
}

article {
    width: 45%;
    display: inline-block;
    /* float: left; */
    margin-right: 2em;
}

article img {
    width: 100%;
    border-radius: 5%;
}

.learnmore {
    display: inline-block;
    height: 3em;
    width: 8em;
    border: 1px solid gray;
    text-decoration: none;
    text-align: center;
    line-height: 2.7em;
    margin-top: 2em;
    border-radius: 0.5em;
    background-color: gray;
}

.view {
    position: relative;
    top: 9em;
    left: 8.4em;
}

article a:nth-of-type(2):hover {
    transition: opacity 0.5s ease-in-out;
    opacity: 0.6;
}

a {
    color: black;
}

/* footer { 
    clear: both;
} */