
*{
    margin: 0;
    padding: 0;
}

.point:hover{
    opacity: 0.7;
}

.point {
    animation: flyin 1.2s ease forwards;
    opacity: 0;
    transform: translate(300px, 0);
  }
  
  @keyframes flyin {
     to {
       transform: translate(0);
       opacity: 1;
     }
  }

body{
    height: 100vh;
    font-family: 'Abel', sans-serif;
    overflow-x: hidden;
    
}

.sections{
    width: 100vw;
    height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

.centered{
    border: 1px solid gray;
    border-radius: 10px;
    padding: 10px;
    margin: 5px;
    max-width: 50vw;
}
.point{
    background-color: black;
    /* opacity: 1; */
    margin: 5px;
    text-decoration: underline;
    border-radius: 10px;
    padding: 5px;
    font-size: 16px;
    color: white;
    text-align: center;
    cursor: pointer;
}

p{
    margin-top: 15px;
}


.point a{
    text-decoration: none;
    cursor: pointer;
    color: white;
}
.header{
    font-size: 72px;
    background-color: black;
    opacity: 0.4;
    color: whitesmoke;
    font-style: italic;
}
/* .row{
    display: flex;
    flex-direction: row;
}
.column{
    display: flex;
    flex-direction: column;
} */
img{
    max-width: 100%;
    border-radius: 5px;
}

@media only screen and (max-width: 768px) {
    .centered {
        max-width: 90vw;
    }
}

@media only screen and (max-width: 450px) {
    /* .row{
        position: relative;
    }
    .points{
        position: absolute;
        top: 0px;
        left: 0px;
    } */
    .container{
        width: 100vw;
    }
    img{
        width: 100vw;
    }
    .header{
        font-size: 36px;
    }
    .point{
        font-size: 18px;
    }
}


