main {
    background-color: rgb(43, 43, 43);
    color: white;
    height: 100vh;
    width: 100%;
    padding-top: 120px; 
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    font-family: 'Oswald', sans-serif;
}

/*gömmer texten när den laddar in*/
.hidden-text1 {
    display: none;
}

div {
    text-align: center;
    width: 350px;
}

.button{
    font-size: 17px;
    padding: 20px;
    width: 400px;
    border-radius: 10px;
    background-color: black;
    color:  yellowgreen;
    border: yellowgreen solid 1px;
    transition: all 0.5s; /*transition effekt i 0.5 sekunder*/
    cursor: pointer;
}

.button span{
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: 0.5s;
}

/*» efter span text + position*/
.button span:after {
    content: '\00bb';/*skapar » efter span text*/
    position: absolute;
    opacity: 0;
    transition: 0.5s;
    top: 0;
    right: -20px;
}

/*när hovrar button, pushar span text höger*/
.button:hover span {
    padding-right: 25px;
}

/*när hovrar, » visas in*/
.button:hover span:after {
    opacity: 1;
    right: 0;
}