* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root {
--red:#dc4266;
--blue:#3072e6;
--white:#ffffff;
--black:#000000;

--background: #850404e7;
--backgroundLink: #ff0037;


--font-family:'Roboto', sans-serifa;

--gunnar-photo-size:220px;
}


body {
    color:var(-black);
    background: var(--background);   
}

header {
    margin-top:60px;
    
    display:flex;
    flex-direction: column;
    align-items: center;
    text-align: center;   
}

main {    
    display:flex;
    align-items: center;
    flex-direction: column;

    margin: 0 auto;
    padding: 0 15px;
    max-width: 500px;
}

h1 {
    margin-top: 5px;
    font-size:44px;    
}

h2 {
    margin-top:5px;
    font-size: 32px;
}

h5 {
    margin-top:5px;
    font-size:25px;    
}

.ocupation {
    margin-top:5px;
}

.photo-container {
    overflow: hidden;
    width: var(--gunnar-photo-size);
    height: var(--gunnar-photo-size);
    
    border-radius: 100%;
}

.gunnar-photo {
    width:var(--gunnar-photo-size);
    margin-top:-20px;
}

.gunnar-banner {
    width:100%;
    height:50%;
   
    border-radius: 20%;
}

section {
    display: flex;
    flex-direction:column;
    align-items: center;
    
    margin-top:30px;
}

.link {
    display:flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;

    background: var(--backgroundLink);
    
    color:var(--black);
    font-size:23px;
    text-decoration: none;

    margin-top:5px;
    padding:20px 10px;
    
    width:100%;
    height: 50px;

    max-width: 270px;   
    
    border-radius: 15px;    
    transition: all 250ms;
}

.link img {
    font-size:23px;    
}

.link:first-child {
    margin-top:0%;
}

.link:hover {
    background: #4760a7;
    filter: brightness(1.3);
    transform: translateY(-2px);
}

.callme {
    padding-bottom: 5px;
    text-align: center;
}             

footer {
    margin: top 3px;
   margin:auto;
   display:flex;
   flex-direction: column;
   align-items: center;
}

footer .gunnar-banner {
    margin-top: 15px;
}
