@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    box-sizing: border-box;
}

/* Header Styles */

header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 400px;
    background-image: url("/img/seattle3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 65%;
}

/* Main Styles */

main {
    background: #e9f5dc;
}

.info {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.title {
    margin-bottom: 20px;
    background-color: #0040ff;
    padding: 5px 15px;
    color: #fff;
    border-radius: 5px;
}

.title-paragraph {
    background-color: #0080ff;
    padding: 8px;
    border-radius: 5px;
    color: #fff;
}

.seattle-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 20px auto;
}

.box a {
    color: #000;
    text-decoration: none;
}

.box a:visited {
    color: #000;
}

.img-title {
    text-align: center;
    margin-bottom: 20px;
}

.img-title:hover {
    color: #4f4f4f;
    cursor: pointer;
    text-decoration: underline;
}

.img-info {
    text-align: center;
    padding-bottom: 30px;
}

.three-activities {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

.box {
    flex: 1;
}

/* Guide Styles */

.guide-img {
    width: 200px;
    height: 250px;
    object-fit: cover;
}

.guide-card {
    display: flex;
    justify-content: center;
    background-color: #b3e0ff;
    width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-bottom: 5px solid #0080ff;
    margin-top: 40px;
    margin-bottom: 50px;
    border-radius: 5px;
}

.guide-flex {
    display: flex;
    text-align: center;
    padding-left: 20px;
    flex-direction: column;
    justify-content: space-around;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icons a:visited {
    color: #000;
}

.icons a:hover {
    color: #4f4f4f;
}

/* MEDIA QUERIES */

@media (max-width: 750px) {
    header {
        padding: 20px;
    }
    header h1 {
        font-size: 40px;
        margin: -30px;
    }

    .seattle-img {
        width: 150px;
        height: 150px;
    }

    .three-activities {
        display: block;
        text-align: center;
        padding: 20px;
        margin: 0 auto;
    }

    .guide-card {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .guide-img {
        display: block;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .guide {
        margin-bottom: 10px;
    }

    .icons {
        display: block;
        margin: 10px auto;
    }

    .icons i {
        margin: 10px;
    }

    header {
        background-size: cover;
    }
    .title-paragraph {
        text-align: center;
    }
}