@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;800&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
    width: 90vw;
}

body {
    background-image: url("/src/img/MKPHOTOS-29.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    /*background: linear-gradient(#2d529f, #6ec6d8) no-repeat center center fixed;*/
    background-size: cover;
}

h1, h2, h3, h4, a, p {
    font-family: Montserrat, sans-serif;
    color: white;
}

h1 {
    font-size: 2.5rem;
    font-weight: bolder;
    text-align: center;
}

h2 {
    font-size: 1.3rem;
    font-weight: normal;
    text-align: center;
}

h3 {
    font-size: 1.1rem;
    font-weight: normal;
    text-align: center;
}

h4 {
    font-size: 1rem;
    font-weight: normal;
    text-align: center;
}

a, p {
    font-size: 1.1rem;
    font-weight: 450;
    text-decoration: none;
}

#profilepic {
    margin: 0 0 2vh 0;
    border-radius: 50%;
    height: 27vh;
    border: solid white 1.2vh;
}

.button {
    text-align: center;
    border-radius: 0.5em;
    border:0;
    cursor: pointer;
    box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.49);
}

.linkedin {
    background: linear-gradient(to right, #2d529f, #6ec6d8);
}

.instagram {
    background: linear-gradient(to right, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.soundcloud {
    background: linear-gradient(to right,  #ff7700, #ff2600);
}

.youtube {
    background: linear-gradient(to right,  #FF0000, #ff442e);
}

.website {
    background: linear-gradient(to right, #000000, #343434);
}

a.button{
    padding:1.25rem;
    transition: 0.4s;
    text-decoration: none;
}

svg.icon{
    width: 3vh;
}

div#socials {
    width: 22rem;
}

div.link{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 3vh;
    padding: 1.5vh 7vh;
    gap: 1.2vh;
    transition: transform 150ms ease-in-out;
}


div.link:hover{
    transform: scale(110%);
}


p.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-align: center;
    position: absolute;
    bottom: 10px;
}
p > a {
    text-decoration: underline;
    text-decoration-color: white;
}

form {
    display: flex;
    flex-direction: column;
    margin-top: 2vh;
}

input {
    border-radius: 5px;
    border: none;
    padding: 1.5vh 2.5vh;
    margin: 0.5vh;
    font-family: Montserrat, sans-serif;
}

input[type="submit"] {
    background-color: black;
    color: white;
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
}

input[type="submit"]:hover {
    background-color: white;
    color: black;
    cursor: pointer;
}

.alert {
    margin-top: 2vh;
    background-color: #ff351c;
    color: white;
    padding: 1.5vh 3vh;
    border: darkred solid;
    border-radius: 10px;
    font-size: 1em;
}