@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
*{
    margin: 0;
    padding: 4px;
    box-sizing: border-box;
    text-decoration: none;
    background-color: #cfdff0;
}
.max-width{
    max-width: 1700px;
    padding: 0px 80px;
    margin: auto;
}
.title{
    font-size: 55px;
    font-weight: 600;
    text-align: center;
    color: #304B22;
}
.munros{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.name{
    font-size: 17px;
    font-weight: 600;
    color: #304B22;
}
.logo a{
    font-size: 35px;
    font-weight: 600;
    color: #304B22;
    transition: all 0.3s ease;
}
.logo a:hover{
    transform: scale(1.1);
}
.route{
    display: flex;
    text-align: center;
    width: 50%;
    padding: 1px 15px;
    border-radius: 10px;
    border: 3px solid #304B22;
    color: #304B22;
    background: none;
}
.route p{
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.route p:hover{
    transform: scale(1.05);
    color: #1C4E80;
}
@media (max-width: 920px){
.munros{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
}