.content{
    position: relative;
    top: 30vh;
    left: 5%;
    font-family: PlexSans;
    font-size: 2vh;
    line-height: 3.5vh;
    display: flex;
    justify-content: space-around;
    width: 90%;
    opacity: 0;
    animation: appearfb 1.2s ease 0s 1 forwards;
}

@keyframes appearfb {
    0%   {top: 32vh; opacity: 0;}
    100% {top: 30vh; opacity: 1;}
}

.content .place{
    max-width: 40%;
    
}
.continent{
        font-weight: bold;
	}

.social{
    position: relative;
    top: 30vh;
    font-family: PlexSans;
    font-size: 2vh;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: appearfb2 1.2s ease 0s 1 forwards;
}
.social a{
    text-decoration: none;
    color: black;
    margin-right: 4vh;
}

@keyframes appearfb2 {
    0%   {top: 32vh; opacity: 0;}
    100% {top: 30vh; opacity: 1;}
}
.social img{
    max-height: 4vh;
}
